Example #1
0
File: runner.py Project: ieure/pypy
 def bh_newstr(self, length):
     return llimpl.do_newstr(length)
Example #2
0
 def bh_newstr(self, length):
     return llimpl.do_newstr(length)
Example #3
0
 def do_newstr(self, lengthbox):
     length = lengthbox.getint()
     return history.BoxPtr(llimpl.do_newstr(0, length))
Example #4
0
 def do_newstr(self, lengthbox):
     length = lengthbox.getint()
     return history.BoxPtr(llimpl.do_newstr(0, length))