]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add item about new threading module functions.
authorJeremy Hylton <jeremy@alum.mit.edu>
Mon, 16 Jun 2003 20:38:15 +0000 (20:38 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Mon, 16 Jun 2003 20:38:15 +0000 (20:38 +0000)
Misc/NEWS

index fefa17c7a8814de119c8a4503e22a3030ffc10ec..0ee20460f539d2e22d465ede6bfcd5d72860c5f9 100644 (file)
--- 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.)