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

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Feb 14 02:55:44 CET 2006


Author: cfbolz
Date: Tue Feb 14 02:55:41 2006
New Revision: 23311

Modified:
   pypy/dist/pypy/rpython/memory/gctransform.py
Log:
lesson of tonight: run the tests even for trivial checkins :-(


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:55:41 2006
@@ -388,7 +388,7 @@
     try:
         destrptr(destr_v)
     except Exception:
-        os.write(2, "a destructor raised an exception, ignoring it\n")
+        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