summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2006-06-29 18:34:15 (GMT)
committerThomas Heller <theller@ctypes.org>2006-06-29 18:34:15 (GMT)
commitbde081329bbf658be0267b067c61341e0a4a74b8 (patch)
tree3d9345c64ff298b621271b960ed7a43d54e3ddb3 /Misc
parent877fdb01fed44e00863f09150b449aa838a3d3dc (diff)
downloadcpython-bde081329bbf658be0267b067c61341e0a4a74b8.zip
cpython-bde081329bbf658be0267b067c61341e0a4a74b8.tar.gz
cpython-bde081329bbf658be0267b067c61341e0a4a74b8.tar.bz2
Protect the thread api calls in the _ctypes extension module within
#ifdef WITH_THREADS/#endif blocks. Found by Sam Rushing.
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 8e83867..2b3a8df 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,9 @@ Core and builtins
Library
-------
+- The '_ctypes' extension module now works when Python is configured
+ with the --without-threads option.
+
- Bug #1504333: Make sgmllib support angle brackets in quoted
attribute values.