[pypy-svn] r8007 - pypy/branch/src-pytest/pypy/interpreter/test

arigo at codespeak.net arigo at codespeak.net
Thu Dec 30 09:53:54 CET 2004


Author: arigo
Date: Thu Dec 30 09:53:53 2004
New Revision: 8007

Modified:
   pypy/branch/src-pytest/pypy/interpreter/test/test_interpreter.py
Log:
Reverted the previous check-in, which looked accidental (?).


Modified: pypy/branch/src-pytest/pypy/interpreter/test/test_interpreter.py
==============================================================================
--- pypy/branch/src-pytest/pypy/interpreter/test/test_interpreter.py	(original)
+++ pypy/branch/src-pytest/pypy/interpreter/test/test_interpreter.py	Thu Dec 30 09:53:53 2004
@@ -255,3 +255,6 @@
         finally:
             sys.stdout = save
 
+    def test_identity(self):
+        def f(x): return x
+        assert f(666) == 666



More information about the Pypy-commit mailing list