예제 #1
0
파일: runner.py 프로젝트: ieure/pypy
 def bh_strgetitem(self, string, index):
     return llimpl.do_strgetitem(string, index)
예제 #2
0
파일: runner.py 프로젝트: purepython/pypy
 def bh_strgetitem(self, string, index):
     return llimpl.do_strgetitem(string, index)
예제 #3
0
파일: runner.py 프로젝트: enyst/plexnet
 def do_strgetitem(self, stringbox, indexbox):
     string = stringbox.getref_base()
     index = indexbox.getint()
     return history.BoxInt(llimpl.do_strgetitem(0, string, index))
예제 #4
0
 def do_strgetitem(self, stringbox, indexbox):
     string = stringbox.getref_base()
     index = indexbox.getint()
     return history.BoxInt(llimpl.do_strgetitem(0, string, index))