summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-07-02 21:58:31 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-07-02 21:58:31 (GMT)
commitb32b998bf7ccc8718f1f086f2e3d2658f2e5b224 (patch)
tree570aad9f7383abad18339e62935c864c76960279
parent42e913aa3a6f777a8d40eb1d020e77906d0b1ba4 (diff)
parentd3a2a95125167564aed33286933dd224a1f47b7e (diff)
downloadcpython-b32b998bf7ccc8718f1f086f2e3d2658f2e5b224.zip
cpython-b32b998bf7ccc8718f1f086f2e3d2658f2e5b224.tar.gz
cpython-b32b998bf7ccc8718f1f086f2e3d2658f2e5b224.tar.bz2
merge 3.4
-rw-r--r--Lib/test/pickletester.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py
index cbe4607..78b5483 100644
--- a/Lib/test/pickletester.py
+++ b/Lib/test/pickletester.py
@@ -1043,7 +1043,7 @@ class AbstractPickleTests(unittest.TestCase):
# Issue 24552
global SimpleNewObj
save = SimpleNewObj
- o = object.__new__(SimpleNewObj)
+ o = SimpleNewObj.__new__(SimpleNewObj)
b = self.dumps(o, 4)
try:
SimpleNewObj = 42