diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2003-06-16 20:38:15 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2003-06-16 20:38:15 (GMT) |
commit | e0c3112ae7cda92ecc7180fd6a391999f66f5b64 (patch) | |
tree | a489beb40e0358cdf130c65b16ce86b255293e23 /Misc | |
parent | f00368f9edb4842ef668f4fcfbdcf2f34e3c6226 (diff) | |
download | cpython-e0c3112ae7cda92ecc7180fd6a391999f66f5b64.zip cpython-e0c3112ae7cda92ecc7180fd6a391999f66f5b64.tar.gz cpython-e0c3112ae7cda92ecc7180fd6a391999f66f5b64.tar.bz2 |
Add item about new threading module functions.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -84,6 +84,11 @@ Library SourceForge) is now included as Lib/idlelib. The old Tools/idle is no more. +- The threading module has new functions settrace() and setprofile() + that cooperate with the functions of the same name in the sys + module. A function registered with the threading module will + be used for all threads it creates. + - copy.py: applied SF patch 707900, fixing bug 702858, by Steven Taschuk. Copying a new-style class that had a reference to itself didn't work. (The same thing worked fine for old-style classes.) |