[pypy-svn] pypy commit 55d92d35c5b4: remove pdb (thanks alex)

Bitbucket commits-noreply at bitbucket.org
Tue Dec 14 11:41:52 CET 2010


# HG changeset patch -- Bitbucket.org
# Project pypy
# URL http://bitbucket.org/pypy/pypy/overview
# User Maciej Fijalkowski <fijall at gmail.com>
# Date 1292308744 0
# Node ID 55d92d35c5b4a4a329fd165cd05f902db29aa894
# Parent  69ac5b5dc4acc42177b63c69dbbcc25989e7e537
remove pdb (thanks alex)

--- a/pypy/jit/backend/llgraph/runner.py
+++ b/pypy/jit/backend/llgraph/runner.py
@@ -490,8 +490,6 @@ class LLtypeCPU(BaseCPU):
 
     def get_invalidate_asm(self, TP, fieldname):
         def invalidate_asm(arg, fieldname):
-            import pdb
-            pdb.set_trace()
             next = getattr(arg, fieldname)
             while next:
                 prev = next

--- a/pypy/jit/backend/llgraph/llimpl.py
+++ b/pypy/jit/backend/llgraph/llimpl.py
@@ -934,8 +934,6 @@ class Frame(object):
 
     def op_guard_not_invariant(self, descr):
         if self.loop.invalidated:
-            import pdb
-            pdb.set_trace()
             raise GuardFailed
 
 class OOFrame(Frame):



More information about the Pypy-commit mailing list