[Python-checkins] python/dist/src/Lib/test test___all__.py, 1.41, 1.42 test_sundry.py, 1.14, 1.15

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sun Dec 5 05:55:49 CET 2004


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10587/Lib/test

Modified Files:
	test___all__.py test_sundry.py 
Log Message:
Remove the deprecated statcache module.

Index: test___all__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test___all__.py,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- test___all__.py	6 Nov 2004 23:45:48 -0000	1.41
+++ test___all__.py	5 Dec 2004 04:55:13 -0000	1.42
@@ -9,8 +9,6 @@
                         r'pre$')
 warnings.filterwarnings("ignore", ".* regsub .*", DeprecationWarning,
                         r'^regsub$')
-warnings.filterwarnings("ignore", ".* statcache .*", DeprecationWarning,
-                        r'statcache$')
 
 class AllTest(unittest.TestCase):
 
@@ -148,7 +146,6 @@
         self.check_all("socket")
         self.check_all("sre")
         self.check_all("_strptime")
-        self.check_all("statcache")
         self.check_all("symtable")
         self.check_all("tabnanny")
         self.check_all("tarfile")

Index: test_sundry.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_sundry.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- test_sundry.py	2 Jun 2004 17:40:14 -0000	1.14
+++ test_sundry.py	5 Dec 2004 04:55:14 -0000	1.15
@@ -3,8 +3,6 @@
 import warnings
 warnings.filterwarnings('ignore', r".*posixfile module",
                         DeprecationWarning, 'posixfile$')
-warnings.filterwarnings('ignore', r".*statcache module",
-                        DeprecationWarning, 'statcache$')
 
 from test.test_support import verbose
 
@@ -80,7 +78,6 @@
 import shutil
 import smtplib
 import sndhdr
-import statcache
 import statvfs
 import stringold
 import sunau



More information about the Python-checkins mailing list