Commit 337b1737 authored by Benjamin Peterson's avatar Benjamin Peterson

merge 2.7.4 release branch

parents da76aa8e d627e122
...@@ -6,8 +6,14 @@ import cStringIO ...@@ -6,8 +6,14 @@ import cStringIO
import pickletools import pickletools
import copy_reg import copy_reg
from test.test_support import (TestFailed, have_unicode, TESTFN, _2G, _1M, from test.test_support import TestFailed, verbose, have_unicode, TESTFN
precisionbigmemtest) try:
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
def precisionbigmemtest(*args, **kwargs):
return lambda self: None
# Tests that try a number of pickle protocols should have a # Tests that try a number of pickle protocols should have a
# for proto in protocols: # for proto in protocols:
......
...@@ -39,6 +39,8 @@ Library ...@@ -39,6 +39,8 @@ Library
- Issue #17531: Fix tests that thought group and user ids were always the int - Issue #17531: Fix tests that thought group and user ids were always the int
type. Also, always allow -1 as a valid group and user id. type. Also, always allow -1 as a valid group and user id.
- Issue #17533: Fix test_xpickle with older versions of Python 2.5.
Documentation Documentation
------------- -------------
......
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