[pypy-commit] pypy py3k: fix NameError

pjenvey noreply at buildbot.pypy.org
Sat Feb 16 02:26:50 CET 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r61299:3b672ceb8674
Date: 2013-02-15 17:26 -0800
http://bitbucket.org/pypy/pypy/changeset/3b672ceb8674/

Log:	fix NameError

diff --git a/lib-python/3.2/test/test_dict.py b/lib-python/3.2/test/test_dict.py
--- a/lib-python/3.2/test/test_dict.py
+++ b/lib-python/3.2/test/test_dict.py
@@ -319,7 +319,7 @@
                     self.assertEqual(va, int(ka))
                     kb, vb = tb = b.popitem()
                     self.assertEqual(vb, int(kb))
-                    if test_support.check_impl_detail():
+                    if support.check_impl_detail():
                         self.assertFalse(copymode < 0 and ta != tb)
                 self.assertFalse(a)
                 self.assertFalse(b)


More information about the pypy-commit mailing list