[pypy-svn] r44301 - pypy/dist/pypy/rpython/module

fijal at codespeak.net fijal at codespeak.net
Sat Jun 16 13:42:05 CEST 2007


Author: fijal
Date: Sat Jun 16 13:42:04 2007
New Revision: 44301

Modified:
   pypy/dist/pypy/rpython/module/ll_os.py
Log:
Fix translation


Modified: pypy/dist/pypy/rpython/module/ll_os.py
==============================================================================
--- pypy/dist/pypy/rpython/module/ll_os.py	(original)
+++ pypy/dist/pypy/rpython/module/ll_os.py	Sat Jun 16 13:42:04 2007
@@ -142,7 +142,7 @@
 def WIFSIGNALED_lltypeimpl(status):
     return bool(os_WIFSIGNALED(status))
 
-register_external(os.WIFSIGNALED, [int], int, "ll_os.WIFSIGNALED",
+register_external(os.WIFSIGNALED, [int], bool, "ll_os.WIFSIGNALED",
                   llimpl=WIFSIGNALED_lltypeimpl)
 
 class BaseOS:



More information about the Pypy-commit mailing list