summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2008-04-14 16:10:07 (GMT)
committerThomas Heller <theller@ctypes.org>2008-04-14 16:10:07 (GMT)
commit046e6a43ff64885d9f5cdaac13a2b9f6e0ee8c84 (patch)
tree5acb0a36e8bcadbf5bca7c981c911178af2acbe6 /Misc
parentda950eb01c1191e6ccdd02ca009fca7ead2b3066 (diff)
downloadcpython-046e6a43ff64885d9f5cdaac13a2b9f6e0ee8c84.zip
cpython-046e6a43ff64885d9f5cdaac13a2b9f6e0ee8c84.tar.gz
cpython-046e6a43ff64885d9f5cdaac13a2b9f6e0ee8c84.tar.bz2
Issue #2616: Implement ctypes.pointer() and ctypes.POINTER() in C for
better performance.
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 eda3685..b4077e5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Extensions Modules
Library
-------
+- Issue #2616: The ctypes.pointer() and ctypes.POINTER() functions are
+ now implemented in C for better performance.
+
- Issue #2408: The ``_types`` module, which was used as in implementation
detail of the public ``types`` module, has been removed and replaced by pure
python code.