[pypy-svn] r23310 - pypy/dist/pypy/rpython/memory

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Feb 14 02:47:04 CET 2006


Author: cfbolz
Date: Tue Feb 14 02:47:03 2006
New Revision: 23310

Modified:
   pypy/dist/pypy/rpython/memory/gctransform.py
Log:
add a nice newline, too


Modified: pypy/dist/pypy/rpython/memory/gctransform.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/gctransform.py	(original)
+++ pypy/dist/pypy/rpython/memory/gctransform.py	Tue Feb 14 02:47:03 2006
@@ -388,7 +388,7 @@
     try:
         destrptr(destr_v)
     except Exception:
-        os.write(2, "a destructor raised an exception, ignoring it")
+        os.write(2, "a destructor raised an exception, ignoring it\n")
     refcount = gcheader.signed[0] - 1
     gcheader.signed[0] = refcount
     if refcount == 0:



More information about the Pypy-commit mailing list