Replace text_type() by str()

This commit is contained in:
Takeshi KOMIYA
2019-01-13 14:02:10 +09:00
parent ae60ed5b0b
commit 3a6989d274

View File

@@ -919,7 +919,7 @@ class ASTFoldExpr(ASTBase):
# type: (int) -> str
assert version >= 3
if version == 3:
return text_type(self)
return str(self)
# https://github.com/itanium-cxx-abi/cxx-abi/pull/67
res = []
if self.leftExpr is None: # (... op expr)