[pypy-svn] r75865 - pypy/branch/fast-forward/pypy/rlib/rstruct

benjamin at codespeak.net benjamin at codespeak.net
Tue Jul 6 00:23:27 CEST 2010


Author: benjamin
Date: Tue Jul  6 00:23:25 2010
New Revision: 75865

Modified:
   pypy/branch/fast-forward/pypy/rlib/rstruct/ieee.py
Log:
death to print

Modified: pypy/branch/fast-forward/pypy/rlib/rstruct/ieee.py
==============================================================================
--- pypy/branch/fast-forward/pypy/rlib/rstruct/ieee.py	(original)
+++ pypy/branch/fast-forward/pypy/rlib/rstruct/ieee.py	Tue Jul  6 00:23:25 2010
@@ -125,7 +125,6 @@
 
 def pack_float8(result, x):
     unsigned = float_pack(x, 8)
-    print unsigned
     for i in range(8):
         result.append(chr((unsigned >> (i * 8)) & 0xFF))
 



More information about the Pypy-commit mailing list