[pypy-commit] pypy default: uh?

arigo pypy.commits at gmail.com
Wed Feb 1 09:06:31 EST 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r89881:22cb2a83ab9f
Date: 2017-02-01 14:56 +0100
http://bitbucket.org/pypy/pypy/changeset/22cb2a83ab9f/

Log:	uh?

diff --git a/pypy/interpreter/test/test_function.py b/pypy/interpreter/test/test_function.py
--- a/pypy/interpreter/test/test_function.py
+++ b/pypy/interpreter/test/test_function.py
@@ -95,8 +95,8 @@
     def test_write_code_builtin_forbidden(self):
         def f(*args):
             return 42
-            raises(TypeError, "dir.func_code = f.func_code")
-            raises(TypeError, "list.append.im_func.func_code = f.func_code")
+        raises(TypeError, "dir.func_code = f.func_code")
+        raises(TypeError, "list.append.im_func.func_code = f.func_code")
 
     def test_set_module_to_name_eagerly(self):
         skip("fails on PyPy but works on CPython.  Unsure we want to care")


More information about the pypy-commit mailing list