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

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Aug 4 10:43:29 CEST 2005


Author: cfbolz
Date: Thu Aug  4 10:43:27 2005
New Revision: 15597

Modified:
   pypy/dist/pypy/rpython/memory/simulator.py
Log:
oops, remove debug prints

Modified: pypy/dist/pypy/rpython/memory/simulator.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/simulator.py	(original)
+++ pypy/dist/pypy/rpython/memory/simulator.py	Thu Aug  4 10:43:27 2005
@@ -55,8 +55,6 @@
             raise MemorySimulatorError, "trying to access memory between blocks"
         if offset2 + size > other.size:
             raise MemorySimulatorError, "trying to access memory between blocks"
-        print self.memory[offset1:offset1+size]
-        print self.status[offset1:offset1+size]
         other.memory[offset2:offset2+size] = self.memory[offset1:offset1+size]
         other.status[offset2:offset2+size] = self.status[offset1:offset1+size]
 



More information about the Pypy-commit mailing list