[pypy-svn] r21151 - pypy/dist/pypy/translator/c/test

ale at codespeak.net ale at codespeak.net
Wed Dec 14 09:42:46 CET 2005


Author: ale
Date: Wed Dec 14 09:42:45 2005
New Revision: 21151

Modified:
   pypy/dist/pypy/translator/c/test/test_ext__socket.py
Log:
Forgot to remove view = True in the test


Modified: pypy/dist/pypy/translator/c/test/test_ext__socket.py
==============================================================================
--- pypy/dist/pypy/translator/c/test/test_ext__socket.py	(original)
+++ pypy/dist/pypy/translator/c/test/test_ext__socket.py	Wed Dec 14 09:42:45 2005
@@ -139,7 +139,7 @@
             sockname = rsocket.getpeername(fd)
             os.close(fd)
             return sockname[1]
-        f1 = compile(does_stuff, [], True)
+        f1 = compile(does_stuff, [])
         res = f1()
         assert res == self.PORT
 



More information about the Pypy-commit mailing list