Author: Ronan Lamy <[email protected]>
Branch: py3.6
Changeset: r97321:c0d46759b1dc
Date: 2019-08-28 15:02 +0100
http://bitbucket.org/pypy/pypy/changeset/c0d46759b1dc/

Log:    fix typo

diff --git a/lib-python/3/test/test_class.py b/lib-python/3/test/test_class.py
--- a/lib-python/3/test/test_class.py
+++ b/lib-python/3/test/test_class.py
@@ -588,7 +588,7 @@
         self.assertEqual(A() + 1, 'summa')
 
         name2 = str(b'__add__', 'ascii')
-        if support.check_impl_detail()::
+        if support.check_impl_detail():
             self.assertIsNot(name2, '__add__')
             self.assertIsNot(name2, name)
         type.__delattr__(A, name2)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to