[pypy-commit] pypy jitframe-on-heap: remove pdb, it was not supposed to go in

fijal noreply at buildbot.pypy.org
Fri Jan 25 18:54:35 CET 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: jitframe-on-heap
Changeset: r60475:68a884c17ef2
Date: 2013-01-25 19:54 +0200
http://bitbucket.org/pypy/pypy/changeset/68a884c17ef2/

Log:	remove pdb, it was not supposed to go in

diff --git a/rpython/jit/backend/llsupport/rewrite.py b/rpython/jit/backend/llsupport/rewrite.py
--- a/rpython/jit/backend/llsupport/rewrite.py
+++ b/rpython/jit/backend/llsupport/rewrite.py
@@ -262,8 +262,6 @@
         """Try to generate or update a CALL_MALLOC_NURSERY.
         If that fails, generate a plain CALL_MALLOC_GC instead.
         """
-        import pdb
-        pdb.set_trace()
         size = self.round_up_for_allocation(size)
         if not self.gc_ll_descr.can_use_nursery_malloc(size):
             return False


More information about the pypy-commit mailing list