summaryrefslogtreecommitdiff
path: root/Lib/_dummy_thread.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-08-17 22:31:15 +0000
committerBrett Cannon <bcannon@gmail.com>2008-08-17 22:31:15 +0000
commit3e5940703be7650520d8059a493250885dd557a3 (patch)
tree0a893241c152447657070c08ebff70c9c18dcc21 /Lib/_dummy_thread.py
parentc035e9e10d934648a2d16d3c813aa59c87a180f6 (diff)
downloadcpython-3e5940703be7650520d8059a493250885dd557a3.tar.gz
Merged revisions 65787 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r65787 | brett.cannon | 2008-08-17 15:10:11 -0700 (Sun, 17 Aug 2008) | 3 lines 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 e03905c203..7aa6579efe 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."""