[pypy-svn] r32540 - pypy/dist/pypy/module/_random

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Sep 20 18:47:07 CEST 2006


Author: cfbolz
Date: Wed Sep 20 18:47:06 2006
New Revision: 32540

Modified:
   pypy/dist/pypy/module/_random/interp_random.py
Log:
remove debug print


Modified: pypy/dist/pypy/module/_random/interp_random.py
==============================================================================
--- pypy/dist/pypy/module/_random/interp_random.py	(original)
+++ pypy/dist/pypy/module/_random/interp_random.py	Wed Sep 20 18:47:06 2006
@@ -97,7 +97,6 @@
             bytesarray[i + 2] = (r >> 16) & r_uint(0xff)
             bytesarray[i + 3] = (r >> 24) & r_uint(0xff)
             k -= 32
-        print bytesarray
 
         # XXX so far this is quadratic
         w_result = space.newlong(0)



More information about the Pypy-commit mailing list