Author: Philip Jenvey <[email protected]>
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)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to