[pypy-commit] pypy py3.6: fix merge

rlamy pypy.commits at gmail.com
Mon Aug 5 12:11:23 EDT 2019


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3.6
Changeset: r97065:05f51882e7bd
Date: 2019-08-05 17:10 +0100
http://bitbucket.org/pypy/pypy/changeset/05f51882e7bd/

Log:	fix merge

diff --git a/lib-python/3/test/test_compile.py b/lib-python/3/test/test_compile.py
--- a/lib-python/3/test/test_compile.py
+++ b/lib-python/3/test/test_compile.py
@@ -513,7 +513,7 @@
         self.assertInvalidSingle('1\n2')
         if check_impl_detail():
             # it's a single statment in PyPy
-        self.assertInvalidSingle('def f(): pass')
+            self.assertInvalidSingle('def f(): pass')
         self.assertInvalidSingle('a = 13\nb = 187')
         self.assertInvalidSingle('del x\ndel y')
         self.assertInvalidSingle('f()\ng()')


More information about the pypy-commit mailing list