summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2009-09-18 20:05:44 (GMT)
committerThomas Heller <theller@ctypes.org>2009-09-18 20:05:44 (GMT)
commit6be522bfc268a3a49c7a605667a760dd4a09e43f (patch)
tree71c82690ef32e8cf6cb535ec6070071098cb7138 /Misc
parent7a352c0ed8a12d868d9b682f4adf33f558d19855 (diff)
downloadcpython-6be522bfc268a3a49c7a605667a760dd4a09e43f.zip
cpython-6be522bfc268a3a49c7a605667a760dd4a09e43f.tar.gz
cpython-6be522bfc268a3a49c7a605667a760dd4a09e43f.tar.bz2
Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...)
does now always result in NULL.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 5 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 12815a8..0ce1168 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -376,8 +376,11 @@ Core and Builtins
Library
-------
-- Issue #5042: Structure sub-subclass does now initialize correctly
- with base class positional arguments.
+- Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...)
+ does now always result in NULL.
+
+- Issue #5042: ctypes Structure sub-subclass does now initialize
+ correctly with base class positional arguments.
- Issue #6938: Fix a TypeError in string formatting of a multiprocessing
debug message.