summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
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.