コード例 #1
0
ファイル: runner.py プロジェクト: ieure/pypy
 def bh_newstr(self, length):
     return llimpl.do_newstr(length)
コード例 #2
0
ファイル: runner.py プロジェクト: purepython/pypy
 def bh_newstr(self, length):
     return llimpl.do_newstr(length)
コード例 #3
0
ファイル: runner.py プロジェクト: enyst/plexnet
 def do_newstr(self, lengthbox):
     length = lengthbox.getint()
     return history.BoxPtr(llimpl.do_newstr(0, length))
コード例 #4
0
 def do_newstr(self, lengthbox):
     length = lengthbox.getint()
     return history.BoxPtr(llimpl.do_newstr(0, length))