[pypy-commit] pypy vecopt-merge: removed pdb set_tracer(), this prevented every single test from passing ...

plan_rich noreply at buildbot.pypy.org
Wed Oct 14 08:07:55 EDT 2015


Author: Richard Plangger <planrichi at gmail.com>
Branch: vecopt-merge
Changeset: r80204:dd282568c406
Date: 2015-10-14 14:08 +0200
http://bitbucket.org/pypy/pypy/changeset/dd282568c406/

Log:	removed pdb set_tracer(), this prevented every single test from
	passing ...

diff --git a/pypy/module/pypyjit/test_pypy_c/test_00_model.py b/pypy/module/pypyjit/test_pypy_c/test_00_model.py
--- a/pypy/module/pypyjit/test_pypy_c/test_00_model.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_00_model.py
@@ -63,7 +63,6 @@
                                 stdout=subprocess.PIPE,
                                 stderr=subprocess.PIPE)
         stdout, stderr = pipe.communicate()
-        import pdb; pdb.set_trace()
         if pipe.wait() < 0:
             raise IOError("subprocess was killed by signal %d" % (
                 pipe.returncode,))


More information about the pypy-commit mailing list