コード例 #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))