示例#1
0
文件: runner.py 项目: ieure/pypy
 def bh_strlen(self, string):
     return llimpl.do_strlen(string)
示例#2
0
文件: runner.py 项目: purepython/pypy
 def bh_strlen(self, string):
     return llimpl.do_strlen(string)
示例#3
0
文件: runner.py 项目: enyst/plexnet
 def do_strlen(self, stringbox):
     string = stringbox.getref_base()
     return history.BoxInt(llimpl.do_strlen(0, string))
示例#4
0
 def do_strlen(self, stringbox):
     string = stringbox.getref_base()
     return history.BoxInt(llimpl.do_strlen(0, string))