[Python-checkins] cpython (2.7): G -> M (closes #17533)

benjamin.peterson python-checkins at python.org
Sat Mar 30 20:31:48 CET 2013


http://hg.python.org/cpython/rev/be0586ebb842
changeset:   83027:be0586ebb842
branch:      2.7
parent:      83019:de48977f9289
user:        Benjamin Peterson <benjamin at python.org>
date:        Sat Mar 30 15:30:28 2013 -0400
summary:
  G -> M (closes #17533)

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


diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py
--- a/Lib/test/pickletester.py
+++ b/Lib/test/pickletester.py
@@ -11,7 +11,7 @@
     from test.test_support import _2G, _1M, precisionbigmemtest
 except ImportError:
     # this import might fail when run on older Python versions by test_xpickle
-    _2G = _1G = 0
+    _2G = _1M = 0
     def precisionbigmemtest(*args, **kwargs):
         return lambda self: None
 

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


More information about the Python-checkins mailing list