diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-10-16 02:29:02 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-10-16 02:29:02 (GMT) |
commit | fd6d3b149f78de2fb7953cc4f957e99b3db30813 (patch) | |
tree | dd3c1b02b254b939fa968127c937afb1d29061b4 | |
parent | ca01a768781ba5cdf768858efaabaf7759163af5 (diff) | |
download | cpython-fd6d3b149f78de2fb7953cc4f957e99b3db30813.zip cpython-fd6d3b149f78de2fb7953cc4f957e99b3db30813.tar.gz cpython-fd6d3b149f78de2fb7953cc4f957e99b3db30813.tar.bz2 |
fix typo
-rw-r--r-- | Lib/test/test_zipimport_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_zipimport_support.py b/Lib/test/test_zipimport_support.py index 704f35c..1b617ab 100644 --- a/Lib/test/test_zipimport_support.py +++ b/Lib/test/test_zipimport_support.py @@ -182,7 +182,7 @@ class ZipSupportTests(ImportHooksBaseTestCase): deprecations = [] if __debug__: # Ignore all warnings about the use of class Tester in this module. - depcreations.append(("class Tester is deprecated", DeprecationWarning)) + deprecations.append(("class Tester is deprecated", DeprecationWarning)) if sys.py3kwarning: deprecations += [ ("backquote not supported", SyntaxWarning), |