示例#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))