[pypy-svn] r50281 - pypy/dist/pypy/rpython/lltypesystem
fijal at codespeak.net
fijal at codespeak.net
Thu Jan 3 10:41:15 CET 2008
Author: fijal
Date: Thu Jan 3 10:41:15 2008
New Revision: 50281
Modified:
pypy/dist/pypy/rpython/lltypesystem/rffi.py
Log:
Oops.
Modified: pypy/dist/pypy/rpython/lltypesystem/rffi.py
==============================================================================
--- pypy/dist/pypy/rpython/lltypesystem/rffi.py (original)
+++ pypy/dist/pypy/rpython/lltypesystem/rffi.py Thu Jan 3 10:41:15 2008
@@ -155,7 +155,7 @@
try:
return callable(*args)
except Exception, e:
- os.write(2, "Warning: uncatched exception in callback: %s %s" % (callable, str(e)))
+ os.write(2, "Warning: uncatched exception in callback: %s %s\n" % (str(callable), str(e)))
return errorcode
return wrapper
_make_wrapper_for._annspecialcase_ = 'specialize:memo'
More information about the pypy-svn
mailing list