Lines Matching refs:TextIOWrapper
143 'r', 'wt', 'rt', etc.), it returns a TextIOWrapper. When used to open
224 text = TextIOWrapper(buffer, encoding, errors, newline, line_buffering)
1447 class TextIOWrapper(TextIOBase):
1535 return "<_pyio.TextIOWrapper encoding='{0}'>".format(self.encoding)
1537 return "<_pyio.TextIOWrapper name={0!r} encoding='{1}'>".format(
1976 class StringIO(TextIOWrapper):
1980 argument is like the one of TextIOWrapper's constructor.
2003 # TextIOWrapper tells the encoding in its repr. In StringIO,