summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2008-08-19 19:49:49 (GMT)
committerThomas Heller <theller@ctypes.org>2008-08-19 19:49:49 (GMT)
commitf5049fc8c65ca45a3d42de400be57353b42f1d61 (patch)
tree194458c17b52e4894ef88af2f42e5371d558f89a /Misc/NEWS
parent58ea9fedc825a91a3b153898afade19512bbde85 (diff)
downloadcpython-f5049fc8c65ca45a3d42de400be57353b42f1d61.zip
cpython-f5049fc8c65ca45a3d42de400be57353b42f1d61.tar.gz
cpython-f5049fc8c65ca45a3d42de400be57353b42f1d61.tar.bz2
Merged revisions 65868,65870 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r65868 | thomas.heller | 2008-08-19 21:25:04 +0200 (Di, 19 Aug 2008) | 3 lines Fix a regression introduced by rev. 63792: ctypes function pointers that are COM methods must have a boolean True value. ........ r65870 | thomas.heller | 2008-08-19 21:40:23 +0200 (Di, 19 Aug 2008) | 1 line COM method code is windows specific ........
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 8d163c2..c3cf8be 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
without relying on a particular implementation; remove the ill-named
PyMemoryView() function (PyMemoryView_GET_BUFFER() can be used instead).
+- ctypes function pointers that are COM methods have a boolean True
+ value again.
+
- Issue #1819: function calls with several named parameters are now on
average 35% faster (as measured by pybench).