예제 #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))