Exemplo n.º 1
0
Arquivo: runner.py Projeto: ieure/pypy
 def bh_unicodegetitem(self, string, index):
     return llimpl.do_unicodegetitem(string, index)
Exemplo n.º 2
0
 def bh_unicodegetitem(self, string, index):
     return llimpl.do_unicodegetitem(string, index)
Exemplo n.º 3
0
 def do_unicodegetitem(self, stringbox, indexbox):
     string = stringbox.getref_base()
     index = indexbox.getint()
     return history.BoxInt(llimpl.do_unicodegetitem(0, string, index))
Exemplo n.º 4
0
 def do_unicodegetitem(self, stringbox, indexbox):
     string = stringbox.getref_base()
     index = indexbox.getint()
     return history.BoxInt(llimpl.do_unicodegetitem(0, string, index))