diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-16 06:21:19 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-16 06:21:19 (GMT) |
commit | 04d151372463c57d7a7c0ffee1d227b4a5cc3b06 (patch) | |
tree | 98056733a7971bb96628278933c9f958af17240e /Lib/test/test___all__.py | |
parent | 1a3b248affd2f32f570c7fee4d0918b61fcc3bed (diff) | |
download | cpython-04d151372463c57d7a7c0ffee1d227b4a5cc3b06.zip cpython-04d151372463c57d7a7c0ffee1d227b4a5cc3b06.tar.gz cpython-04d151372463c57d7a7c0ffee1d227b4a5cc3b06.tar.bz2 |
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.
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 7bf5314..74a9cdf 100644 --- a/Lib/test/test___all__.py +++ b/Lib/test/test___all__.py @@ -5,8 +5,6 @@ from test.test_support import verify, verbose 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 @@ class AllTest(unittest.TestCase): 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") |