[pypy-svn] r76564 - pypy/trunk/pypy/annotation

agaynor at codespeak.net agaynor at codespeak.net
Tue Aug 10 15:34:06 CEST 2010


Author: agaynor
Date: Tue Aug 10 15:34:05 2010
New Revision: 76564

Modified:
   pypy/trunk/pypy/annotation/annrpython.py
Log:
Remove debugging stuff from interp level array.

Modified: pypy/trunk/pypy/annotation/annrpython.py
==============================================================================
--- pypy/trunk/pypy/annotation/annrpython.py	(original)
+++ pypy/trunk/pypy/annotation/annrpython.py	Tue Aug 10 15:34:05 2010
@@ -495,12 +495,6 @@
         self.blocked_blocks[block] = graph
 
     def bindinputargs(self, graph, block, inputcells, called_from_graph=None):
-        if 'getitem__Array' in graph.name:
-            if len(inputcells) > 2 and isinstance(inputcells[1], annmodel.SomeInstance) and 'Base' in str(inputcells[1].classdef):
-                import pdb
-                pdb.set_trace()
-            print graph
-            print inputcells
         # Create the initial bindings for the input args of a block.
         assert len(block.inputargs) == len(inputcells)
         where = (graph, block, None)



More information about the Pypy-commit mailing list