summaryrefslogtreecommitdiff
path: root/Lib/shelve.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-08-17 22:10:11 +0000
committerBrett Cannon <bcannon@gmail.com>2008-08-17 22:10:11 +0000
commit93db0e36f4ea50a0416b0116e2cfb4a7e270b8e5 (patch)
treef8c5f1c585e662601f2e7841a3ee67cec90244c3 /Lib/shelve.py
parent7936fe5124e426a2226b466730558bb0dfd489fe (diff)
downloadcpython-93db0e36f4ea50a0416b0116e2cfb4a7e270b8e5.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.py1
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"]