summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2008-08-19 19:25:04 (GMT)
committerThomas Heller <theller@ctypes.org>2008-08-19 19:25:04 (GMT)
commit0ad5ae02af093ad2aa6e97b9eb503efb58e52fcc (patch)
tree4434819df9bb30598b3a26b9fda4a3ab880fd378 /Misc
parent4348a25665b2f09f76a605bab507b4edacc4dd24 (diff)
downloadcpython-0ad5ae02af093ad2aa6e97b9eb503efb58e52fcc.zip
cpython-0ad5ae02af093ad2aa6e97b9eb503efb58e52fcc.tar.gz
cpython-0ad5ae02af093ad2aa6e97b9eb503efb58e52fcc.tar.bz2
Fix a regression introduced by rev. 63792: ctypes function pointers
that are COM methods must have a boolean True value.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e82772f..627ce44 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 beta 3?
Core and Builtins
-----------------
+- ctypes function pointers that are COM methods have a boolean True
+ value again.
+
- Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,
by denying s# to parse objects that have a releasebuffer procedure,
and introducing s*.