コード例 #1
0
ファイル: objspace.py プロジェクト: Wanderfalke/topaz
 def newstr_fromstr(self, strvalue):
     return W_StringObject.newstr_fromstr(self, strvalue)
コード例 #2
0
ファイル: objspace.py プロジェクト: Wanderfalke/topaz
 def newstr_fromstrs(self, strs_w):
     return W_StringObject.newstr_fromstrs(self, strs_w)
コード例 #3
0
ファイル: objspace.py プロジェクト: Wanderfalke/topaz
 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)