summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-08-30 05:16:13 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-08-30 05:16:13 (GMT)
commit692323488baf518117d3ede90189812723f39948 (patch)
tree8401474367a2c7684060b891da495cfb025e9bd5 /Misc
parentc41418751fcef0a42f336ba91871827b45d558a7 (diff)
downloadcpython-692323488baf518117d3ede90189812723f39948.zip
cpython-692323488baf518117d3ede90189812723f39948.tar.gz
cpython-692323488baf518117d3ede90189812723f39948.tar.bz2
Add a new function imp.lock_held(), and use it to skip test_threaded_import
when that test is doomed to deadlock.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS9
1 files changed, 9 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 35737ac..d660df8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -8,6 +8,9 @@ Core
Library
++ A new function, imp.lock_held(), returns 1 when the import lock is
+ currently held. See the docs for the imp module.
+
+ pickle, cPickle and marshal on 32-bit platforms can now correctly read
dumps containing ints written on platforms where Python ints are 8 bytes.
When read on a box where Python ints are 4 bytes, such values are
@@ -17,6 +20,12 @@ Tools
Build
+API
+
++ XXX Say something about Neil's GC rework, and that extensions that
+ don't upgrade to the new scheme will still compile but not actually
+ participate in GC.
+
New platforms
Tests