[Python-checkins] cpython (2.7): fix typo

benjamin.peterson python-checkins at python.org
Tue Oct 16 04:29:07 CEST 2012


http://hg.python.org/cpython/rev/1fed09277e73
changeset:   79726:1fed09277e73
branch:      2.7
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Oct 15 22:29:02 2012 -0400
summary:
  fix typo

files:
  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
--- a/Lib/test/test_zipimport_support.py
+++ b/Lib/test/test_zipimport_support.py
@@ -182,7 +182,7 @@
             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),

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list