[pypy-commit] pypy default: fix translation of test

mattip noreply at buildbot.pypy.org
Wed Jun 11 22:42:21 CEST 2014


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r72023:18f696e31514
Date: 2014-06-11 21:44 +0300
http://bitbucket.org/pypy/pypy/changeset/18f696e31514/

Log:	fix translation of test

diff --git a/rpython/translator/c/test/test_extfunc.py b/rpython/translator/c/test/test_extfunc.py
--- a/rpython/translator/c/test/test_extfunc.py
+++ b/rpython/translator/c/test/test_extfunc.py
@@ -185,6 +185,7 @@
             os.stat("nonexistentdir/nonexistentfile")
         except WindowsError, e:
             return e.winerror
+        return 0    
     f = compile(call_stat, [])
     res = f()
     expected = call_stat()


More information about the pypy-commit mailing list