Ejemplo n.º 1
0
Archivo: runner.py Proyecto: ieure/pypy
 def bh_strgetitem(self, string, index):
     return llimpl.do_strgetitem(string, index)
Ejemplo n.º 2
0
 def bh_strgetitem(self, string, index):
     return llimpl.do_strgetitem(string, index)
Ejemplo n.º 3
0
 def do_strgetitem(self, stringbox, indexbox):
     string = stringbox.getref_base()
     index = indexbox.getint()
     return history.BoxInt(llimpl.do_strgetitem(0, string, index))
Ejemplo n.º 4
0
 def do_strgetitem(self, stringbox, indexbox):
     string = stringbox.getref_base()
     index = indexbox.getint()
     return history.BoxInt(llimpl.do_strgetitem(0, string, index))