예제 #1
0
 def newstr_fromstr(self, strvalue):
     return W_StringObject.newstr_fromstr(self, strvalue)
예제 #2
0
 def newstr_fromstrs(self, strs_w):
     return W_StringObject.newstr_fromstrs(self, strs_w)
예제 #3
0
 def newstr_fromchars(self, chars):
     return W_StringObject.newstr_fromchars(self, chars)
예제 #4
0
파일: objspace.py 프로젝트: gemoe100/topaz
 def newstr_fromstr(self, strvalue):
     assert strvalue is not None
     return W_StringObject.newstr_fromstr(self, strvalue)
예제 #5
0
파일: objspace.py 프로젝트: fniephaus/topaz
 def newstr_fromstrs(self, strs_w):
     return W_StringObject.newstr_fromstrs(self, strs_w)
예제 #6
0
파일: objspace.py 프로젝트: fniephaus/topaz
 def newstr_fromstr(self, strvalue):
     assert strvalue is not None
     return W_StringObject.newstr_fromstr(self, strvalue)
예제 #7
0
파일: objspace.py 프로젝트: fniephaus/topaz
 def newstr_fromchars(self, chars):
     return W_StringObject.newstr_fromchars(self, chars)