Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r53947:773fac2f7006
Date: 2012-03-23 19:12 +0200
http://bitbucket.org/pypy/pypy/changeset/773fac2f7006/

Log:    a missing hop.exception_is_here

diff --git a/pypy/rpython/rstr.py b/pypy/rpython/rstr.py
--- a/pypy/rpython/rstr.py
+++ b/pypy/rpython/rstr.py
@@ -165,6 +165,7 @@
         v_char = hop.inputarg(rstr.char_repr, arg=1)
         v_left = hop.inputconst(Bool, left)
         v_right = hop.inputconst(Bool, right)
+        hop.exception_is_here()
         return hop.gendirectcall(self.ll.ll_strip, v_str, v_char, v_left, 
v_right)
 
     def rtype_method_lstrip(self, hop):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to