summaryrefslogtreecommitdiffstats
path: root/Lib/dummy_thread.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-08-17 22:10:11 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-08-17 22:10:11 (GMT)
commit25c9d6aa00a3e3b97c23a7ebab1afb3feb526699 (patch)
tree1ff317afab1f6bb0602bc0ea5dc2aff71c7aa9a8 /Lib/dummy_thread.py
parent313bda12e8dfe618c6ef2f3681b5ce02409891c8 (diff)
downloadcpython-25c9d6aa00a3e3b97c23a7ebab1afb3feb526699.zip
cpython-25c9d6aa00a3e3b97c23a7ebab1afb3feb526699.tar.gz
cpython-25c9d6aa00a3e3b97c23a7ebab1afb3feb526699.tar.bz2
Remove imports of 'warnings' that are no longer needed in dummy_thread,
filecmp, and shelve.
Diffstat (limited to 'Lib/dummy_thread.py')
-rw-r--r--Lib/dummy_thread.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/dummy_thread.py b/Lib/dummy_thread.py
index 16dcf7e..198dc49 100644
--- a/Lib/dummy_thread.py
+++ b/Lib/dummy_thread.py
@@ -17,7 +17,6 @@ __all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock',
'interrupt_main', 'LockType']
import traceback as _traceback
-import warnings
class error(Exception):
"""Dummy implementation of thread.error."""