Author: Carl Friedrich Bolz-Tereick <[email protected]>
Branch:
Changeset: r93714:2b746704dbf2
Date: 2018-01-29 15:36 +0100
http://bitbucket.org/pypy/pypy/changeset/2b746704dbf2/
Log: remove pdb (thanks, Armin)
diff --git a/pypy/interpreter/pyparser/parsestring.py
b/pypy/interpreter/pyparser/parsestring.py
--- a/pypy/interpreter/pyparser/parsestring.py
+++ b/pypy/interpreter/pyparser/parsestring.py
@@ -57,11 +57,7 @@
assert 0 <= ps <= q
substr = s[ps:q]
else:
- try:
- substr = decode_unicode_utf8(space, s, ps, q)
- except:
- import pdb; pdb.set_trace()
- raise
+ substr = decode_unicode_utf8(space, s, ps, q)
if rawmode:
v = unicodehelper.decode_raw_unicode_escape(space, substr)
else:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit