Commit b9cb84fe authored by Thomas Heller's avatar Thomas Heller

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.
parent 7644262a
...@@ -39,15 +39,6 @@ Core and builtins ...@@ -39,15 +39,6 @@ Core and builtins
Library 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 - Bug #1508010: msvccompiler now requires the DISTUTILS_USE_SDK
environment variable to be set in order to the SDK environment environment variable to be set in order to the SDK environment
for finding the compiler, include files, etc. for finding the compiler, include files, etc.
...@@ -56,10 +47,6 @@ Library ...@@ -56,10 +47,6 @@ Library
- warnings.py now ignores ImportWarning by default - 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, - string.Template() now correctly handles tuple-values. Previously,
multi-value tuples would raise an exception and single-value tuples would multi-value tuples would raise an exception and single-value tuples would
be treated as the value they contain, instead. be treated as the value they contain, instead.
...@@ -82,9 +69,6 @@ Library ...@@ -82,9 +69,6 @@ Library
- Bug #1513223: .close() of a _socketobj now releases the underlying - Bug #1513223: .close() of a _socketobj now releases the underlying
socket again, which then gets closed as it becomes unreferenced. 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 - Bug #1504333: Make sgmllib support angle brackets in quoted
attribute values. attribute values.
...@@ -112,6 +96,22 @@ Library ...@@ -112,6 +96,22 @@ Library
Extension Modules 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 - Bug #1513646: os.access on Windows now correctly determines write
access, again. access, again.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment