From: Jeremy Hylton Date: Mon, 16 Jun 2003 20:38:15 +0000 (+0000) Subject: Add item about new threading module functions. X-Git-Tag: v2.3c1~410 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e0c3112ae7cda92ecc7180fd6a391999f66f5b64;p=thirdparty%2FPython%2Fcpython.git Add item about new threading module functions. --- diff --git a/Misc/NEWS b/Misc/NEWS index fefa17c7a881..0ee20460f539 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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.)