summaryrefslogtreecommitdiffstats
path: root/Lib/threading.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2003-06-29 17:07:46 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2003-06-29 17:07:46 (GMT)
commit89392c00055cedc3795ea13d20ef7b11a87081c5 (patch)
treedb8e2e2f29f2db7a2dfdee0fecfbf092456100c8 /Lib/threading.py
parentd86dcd35540327ac7ba559e8c7852bd82ab84ce7 (diff)
downloadcpython-89392c00055cedc3795ea13d20ef7b11a87081c5.zip
cpython-89392c00055cedc3795ea13d20ef7b11a87081c5.tar.gz
cpython-89392c00055cedc3795ea13d20ef7b11a87081c5.tar.bz2
Remove stub settrace() and setprofile() calls.
Diffstat (limited to 'Lib/threading.py')
-rw-r--r--Lib/threading.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/threading.py b/Lib/threading.py
index f48fb6e..7594542 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()