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

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Feb 14 02:46:30 CET 2006


Author: cfbolz
Date: Tue Feb 14 02:46:28 2006
New Revision: 23309

Modified:
   pypy/dist/pypy/rpython/memory/gctransform.py
Log:
actually write to stderr


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:46:28 2006
@@ -388,7 +388,7 @@
     try:
         destrptr(destr_v)
     except Exception:
-        os.write(0, "a destructor raised an exception, ignoring it")
+        os.write(2, "a destructor raised an exception, ignoring it")
     refcount = gcheader.signed[0] - 1
     gcheader.signed[0] = refcount
     if refcount == 0:



More information about the Pypy-commit mailing list