diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-08-17 22:10:11 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-08-17 22:10:11 +0000 |
commit | 25c9d6aa00a3e3b97c23a7ebab1afb3feb526699 (patch) | |
tree | 1ff317afab1f6bb0602bc0ea5dc2aff71c7aa9a8 /Lib/shelve.py | |
parent | 313bda12e8dfe618c6ef2f3681b5ce02409891c8 (diff) | |
download | cpython-git-25c9d6aa00a3e3b97c23a7ebab1afb3feb526699.tar.gz |
Remove imports of 'warnings' that are no longer needed in dummy_thread,
filecmp, and shelve.
Diffstat (limited to 'Lib/shelve.py')
-rw-r--r-- | Lib/shelve.py | 1 |
1 files changed, 0 insertions, 1 deletions
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"] |