diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/dummy_thread.py | 1 | ||||
-rw-r--r-- | Lib/filecmp.py | 1 | ||||
-rw-r--r-- | Lib/shelve.py | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/Lib/dummy_thread.py b/Lib/dummy_thread.py index 16dcf7e9a2..198dc49dba 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.""" diff --git a/Lib/filecmp.py b/Lib/filecmp.py index 9885765031..0b7ce16dfe 100644 --- a/Lib/filecmp.py +++ b/Lib/filecmp.py @@ -11,7 +11,6 @@ Functions: import os import stat -import warnings from itertools import ifilter, ifilterfalse, imap, izip __all__ = ["cmp","dircmp","cmpfiles"] diff --git a/Lib/shelve.py b/Lib/shelve.py index 1f78fc17fd..fb41c844e4 100644 --- a/Lib/shelve.py +++ b/Lib/shelve.py @@ -69,7 +69,6 @@ except ImportError: from StringIO import StringIO import UserDict -import warnings __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"] |