[pypy-commit] pypy default: a missing hop.exception_is_here

fijal noreply at buildbot.pypy.org
Fri Mar 23 18:12:57 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
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):


More information about the pypy-commit mailing list