[Python-checkins] r43067 - python/trunk/Lib/test/test___all__.py

neal.norwitz python-checkins at python.org
Thu Mar 16 07:21:20 CET 2006


Author: neal.norwitz
Date: Thu Mar 16 07:21:19 2006
New Revision: 43067

Modified:
   python/trunk/Lib/test/test___all__.py
Log:
The pre module has been gone for a while.  Need to go through and find other modules that no longer exists, since errors are silently ignored.

Modified: python/trunk/Lib/test/test___all__.py
==============================================================================
--- python/trunk/Lib/test/test___all__.py	(original)
+++ python/trunk/Lib/test/test___all__.py	Thu Mar 16 07:21:19 2006
@@ -5,8 +5,6 @@
 import sys
 import warnings
 
-warnings.filterwarnings("ignore", ".* 'pre' .*", DeprecationWarning,
-                        r'pre$')
 warnings.filterwarnings("ignore", ".* regsub .*", DeprecationWarning,
                         r'^regsub$')
 warnings.filterwarnings("ignore",
@@ -122,7 +120,6 @@
         self.check_all("poplib")
         self.check_all("posixpath")
         self.check_all("pprint")
-        self.check_all("pre")  # deprecated
         self.check_all("profile")
         self.check_all("pstats")
         self.check_all("pty")


More information about the Python-checkins mailing list