diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-08-30 05:16:13 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-08-30 05:16:13 (GMT) |
commit | 692323488baf518117d3ede90189812723f39948 (patch) | |
tree | 8401474367a2c7684060b891da495cfb025e9bd5 /Misc | |
parent | c41418751fcef0a42f336ba91871827b45d558a7 (diff) | |
download | cpython-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/NEWS | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 |