[Python-checkins] cpython (3.3): Fix test_sys.test_implementation for final releases.

georg.brandl python-checkins at python.org
Sat Sep 29 09:58:29 CEST 2012


http://hg.python.org/cpython/rev/bd8afb90ebf2
changeset:   79242:bd8afb90ebf2
branch:      3.3
tag:         v3.3.0
parent:      79237:cb84dcb35114
user:        Georg Brandl <georg at python.org>
date:        Sat Sep 29 09:44:17 2012 +0200
summary:
  Fix test_sys.test_implementation for final releases.

files:
  Lib/test/test_sys.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -585,7 +585,7 @@
     def test_implementation(self):
         # This test applies to all implementations equally.
 
-        levels = {'alpha': 0xA, 'beta': 0xB, 'candidate': 0xC, 'release': 0xF}
+        levels = {'alpha': 0xA, 'beta': 0xB, 'candidate': 0xC, 'final': 0xF}
 
         self.assertTrue(hasattr(sys.implementation, 'name'))
         self.assertTrue(hasattr(sys.implementation, 'version'))

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


More information about the Python-checkins mailing list