]> granicus.if.org Git - python/commitdiff
Moved the ctypes news entries from the 'Library' section into the
authorThomas Heller <theller@ctypes.org>
Mon, 10 Jul 2006 11:17:37 +0000 (11:17 +0000)
committerThomas Heller <theller@ctypes.org>
Mon, 10 Jul 2006 11:17:37 +0000 (11:17 +0000)
'Extension Modules' section where they belong, probably.

This destroyes the original order of the news entries, don't know
if that is important or not.

Misc/NEWS

index a0266c4ec5cd93bd3c98b45844446bf5a6835073..3add040e9b8c4c9bd93bc7fb84dbd81cfc6bf687 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,15 +39,6 @@ Core and builtins
 Library
 -------
 
-- Assigning None to pointer type fields in ctypes structures possible
-  overwrote the wrong fields, this is fixed now.
-
-- Fixed a segfault in _ctypes when ctypes.wintypes were imported
-  on non-Windows platforms.
-
-- Bug #1518190: The ctypes.c_void_p constructor now accepts any
-  integer or long, without range checking.
-
 - Bug #1508010: msvccompiler now requires the DISTUTILS_USE_SDK 
   environment variable to be set in order to the SDK environment
   for finding the compiler, include files, etc.
@@ -56,10 +47,6 @@ Library
 
 - warnings.py now ignores ImportWarning by default
 
-- Patch #1517790: It is now possible to use custom objects in the ctypes
-  foreign function argtypes sequence as long as they provide a from_param
-  method, no longer is it required that the object is a ctypes type.
-
 - string.Template() now correctly handles tuple-values. Previously,
   multi-value tuples would raise an exception and single-value tuples would
   be treated as the value they contain, instead.
@@ -82,9 +69,6 @@ Library
 - Bug #1513223: .close() of a _socketobj now releases the underlying
   socket again, which then gets closed as it becomes unreferenced.
 
-- The '_ctypes' extension module now works when Python is configured
-  with the --without-threads option.
-
 - Bug #1504333: Make sgmllib support angle brackets in quoted
   attribute values.
 
@@ -112,6 +96,22 @@ Library
 Extension Modules
 -----------------
 
+- Assigning None to pointer type fields in ctypes structures possible
+  overwrote the wrong fields, this is fixed now.
+
+- Fixed a segfault in _ctypes when ctypes.wintypes were imported
+  on non-Windows platforms.
+
+- Bug #1518190: The ctypes.c_void_p constructor now accepts any
+  integer or long, without range checking.
+
+- Patch #1517790: It is now possible to use custom objects in the ctypes
+  foreign function argtypes sequence as long as they provide a from_param
+  method, no longer is it required that the object is a ctypes type.
+
+- The '_ctypes' extension module now works when Python is configured
+  with the --without-threads option.
+
 - Bug #1513646: os.access on Windows now correctly determines write
   access, again.