summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2009-09-18 20:08:39 (GMT)
committerThomas Heller <theller@ctypes.org>2009-09-18 20:08:39 (GMT)
commit69b639f9464d4f9d4b9303d218a2f8bfc8269591 (patch)
tree631bac786c00fe2a0c1ffa554957e11f01fd8ea7 /Misc/NEWS
parentd7cb1b9119beab9a4ffb627bd65cf9e287d32b66 (diff)
downloadcpython-69b639f9464d4f9d4b9303d218a2f8bfc8269591.zip
cpython-69b639f9464d4f9d4b9303d218a2f8bfc8269591.tar.gz
cpython-69b639f9464d4f9d4b9303d218a2f8bfc8269591.tar.bz2
Merged revisions 74921 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r74921 | thomas.heller | 2009-09-18 22:05:44 +0200 (Fr, 18 Sep 2009) | 3 lines Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...) does now always result in NULL. ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1a9bda8..3c4c67b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -72,6 +72,9 @@ C-API
Library
-------
+- Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...)
+ does now always result in NULL.
+
- Issue #5042: Structure sub-subclass does now initialize correctly
with base class positional arguments.