summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-09-11 04:03:07 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-09-11 04:03:07 +0000
commit2e488fdebf109a13a464dbe76f85b8dbf846c7f7 (patch)
tree6dbc312edf3ffa1bb3586640f816a7d31a652609
parent5728c27c7401b0841d3c6c4a45c991a5608a2593 (diff)
downloadcpython-git-2e488fdebf109a13a464dbe76f85b8dbf846c7f7.tar.gz
Add NEWS entries for ctypes backports.
-rw-r--r--Misc/NEWS6
1 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 390ad73585..b2f48f81e8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,7 +50,7 @@ Library
-------
- Patch #1553314: Fix the inspect.py slowdown that was hurting IPython & SAGE
- by adding smarter caching in inspect.getmodule()
+ by adding smarter caching in inspect.getmodule().
- Fix missing import of the types module in logging.config.
@@ -68,6 +68,10 @@ Library
Extension Modules
-----------------
+- Fix bugs in ctypes:
+ - anonymous structure fields that have a bit-width specified did not work
+ - cast function did not accept c_char_p or c_wchar_p instances as first arg
+
- Bug #1551427: fix a wrong NULL pointer check in the win32 version
of os.urandom().