[Python-checkins] r46856 - python/trunk/Lib/test/regrtest.py

neal.norwitz python-checkins at python.org
Sun Jun 11 09:26:51 CEST 2006


Author: neal.norwitz
Date: Sun Jun 11 09:26:50 2006
New Revision: 46856

Modified:
   python/trunk/Lib/test/regrtest.py
Log:
warnings was imported at module scope, no need to import again

Modified: python/trunk/Lib/test/regrtest.py
==============================================================================
--- python/trunk/Lib/test/regrtest.py	(original)
+++ python/trunk/Lib/test/regrtest.py	Sun Jun 11 09:26:50 2006
@@ -684,7 +684,7 @@
 
 def dash_R_cleanup(fs, ps, pic):
     import gc, copy_reg
-    import _strptime, linecache, warnings, dircache
+    import _strptime, linecache, dircache
     import urlparse, urllib, urllib2, mimetypes, doctest
     import struct, filecmp
     from distutils.dir_util import _path_created


More information about the Python-checkins mailing list