From b5ebf27b88e52836bfa6d97d7817f7f381a1394d Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sun, 17 Aug 2008 22:31:15 +0000 Subject: [PATCH] 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. ........ --- Lib/_dummy_thread.py | 1 - Lib/filecmp.py | 1 - Lib/shelve.py | 1 - 3 files changed, 3 deletions(-) diff --git a/Lib/_dummy_thread.py b/Lib/_dummy_thread.py index e03905c203764a..7aa6579efe4e2c 100644 --- a/Lib/_dummy_thread.py +++ b/Lib/_dummy_thread.py @@ -17,7 +17,6 @@ '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 68a8321decbd24..6dcebaa23dfc75 100644 --- a/Lib/filecmp.py +++ b/Lib/filecmp.py @@ -11,7 +11,6 @@ import os import stat -import warnings from itertools import filterfalse __all__ = ["cmp","dircmp","cmpfiles"] diff --git a/Lib/shelve.py b/Lib/shelve.py index c8d9cf529478b6..cf6dac65f47e08 100644 --- a/Lib/shelve.py +++ b/Lib/shelve.py @@ -60,7 +60,6 @@ from io import BytesIO import collections -import warnings __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"]