diff options
author | Raymond Hettinger <python@rcn.com> | 2004-12-05 04:55:14 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-12-05 04:55:14 +0000 |
commit | e9433af88af46b2a212cab5f70990ce5172715d6 (patch) | |
tree | 7a8bf6259d93ee9e12d80a72a697b393316d7157 /Lib/test/test___all__.py | |
parent | 353d906272b18e0053d44444176d19cd545ff1ef (diff) | |
download | cpython-e9433af88af46b2a212cab5f70990ce5172715d6.tar.gz |
Remove the deprecated statcache module.
Diffstat (limited to 'Lib/test/test___all__.py')
-rw-r--r-- | Lib/test/test___all__.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py index 3bddcad96b..683867a871 100644 --- a/Lib/test/test___all__.py +++ b/Lib/test/test___all__.py @@ -9,8 +9,6 @@ warnings.filterwarnings("ignore", ".* 'pre' .*", DeprecationWarning, r'pre$') warnings.filterwarnings("ignore", ".* regsub .*", DeprecationWarning, r'^regsub$') -warnings.filterwarnings("ignore", ".* statcache .*", DeprecationWarning, - r'statcache$') class AllTest(unittest.TestCase): @@ -148,7 +146,6 @@ class AllTest(unittest.TestCase): 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") |