From: Jeremy Hylton Date: Sun, 29 Jun 2003 17:07:46 +0000 (+0000) Subject: Remove stub settrace() and setprofile() calls. X-Git-Tag: v2.3c1~242 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=89392c00055cedc3795ea13d20ef7b11a87081c5;p=thirdparty%2FPython%2Fcpython.git Remove stub settrace() and setprofile() calls. --- diff --git a/Lib/threading.py b/Lib/threading.py index f48fb6e449a4..759454216fc1 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -621,14 +621,6 @@ def enumerate(): _active_limbo_lock.release() return active -# XXX This needs a real defintion. -def settrace(tracefunc): - pass - -# XXX This needs a real defintion. -def setprofile(dispatchfunc): - pass - # Create the main thread object _MainThread()