summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2006-07-10 11:17:37 (GMT)
committerThomas Heller <theller@ctypes.org>2006-07-10 11:17:37 (GMT)
commitb9cb84fe969d86c9d20882570e9256e6fff47436 (patch)
tree0f24bb9083dd637c5ab74b667dbf541b634f5d56 /Misc/NEWS
parent7644262aa5ef62a0e033ac1158b7cc7b41ffdd1a (diff)
downloadcpython-b9cb84fe969d86c9d20882570e9256e6fff47436.zip
cpython-b9cb84fe969d86c9d20882570e9256e6fff47436.tar.gz
cpython-b9cb84fe969d86c9d20882570e9256e6fff47436.tar.bz2
Moved the ctypes news entries from the 'Library' section into the
'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.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS32
1 files changed, 16 insertions, 16 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a0266c4..3add040 100644
--- 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.