[pypy-commit] pypy py3k: Remove debugging leftover

rlamy pypy.commits at gmail.com
Wed Aug 31 13:18:49 EDT 2016


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3k
Changeset: r86787:f06558622d28
Date: 2016-08-31 18:18 +0100
http://bitbucket.org/pypy/pypy/changeset/f06558622d28/

Log:	Remove debugging leftover

diff --git a/pypy/objspace/std/objspace.py b/pypy/objspace/std/objspace.py
--- a/pypy/objspace/std/objspace.py
+++ b/pypy/objspace/std/objspace.py
@@ -157,7 +157,6 @@
                 # poor man's x.decode('ascii', 'replace'), since it's not
                 # supported by RPython
                 if not we_are_translated():
-                    import pdb;pdb.set_trace()
                     print 'WARNING: space.wrap() called on a non-ascii byte string: %r' % x
                 lst = []
                 for ch in x:


More information about the pypy-commit mailing list