Commit fd6d3b14 authored by Benjamin Peterson's avatar Benjamin Peterson

fix typo

parent ca01a768
...@@ -182,7 +182,7 @@ class ZipSupportTests(ImportHooksBaseTestCase): ...@@ -182,7 +182,7 @@ class ZipSupportTests(ImportHooksBaseTestCase):
deprecations = [] deprecations = []
if __debug__: if __debug__:
# Ignore all warnings about the use of class Tester in this module. # 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: if sys.py3kwarning:
deprecations += [ deprecations += [
("backquote not supported", SyntaxWarning), ("backquote not supported", SyntaxWarning),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment