Lines Matching refs:TextIOWrapper

2037         t = self.TextIOWrapper(b)
2049 t = self.TextIOWrapper.__new__(self.TextIOWrapper)
2051 t = self.TextIOWrapper.__new__(self.TextIOWrapper)
2066 self.TextIOWrapper(b, encoding="hex_codec")
2071 t = self.TextIOWrapper(b)
2074 t = self.TextIOWrapper(b, encoding="ascii")
2090 t = self.TextIOWrapper(b, encoding="utf-8")
2091 modname = self.TextIOWrapper.__module__
2107 t = self.TextIOWrapper(b, newline="\n", line_buffering=True)
2118 t = self.TextIOWrapper(b, encoding="utf8")
2120 t = self.TextIOWrapper(b)
2127 t = self.TextIOWrapper(b, encoding="ascii")
2131 t = self.TextIOWrapper(b, encoding="ascii", errors="strict")
2135 t = self.TextIOWrapper(b, encoding="ascii", errors="ignore")
2139 t = self.TextIOWrapper(b, encoding="ascii", errors="replace")
2145 t = self.TextIOWrapper(b, encoding="ascii")
2149 t = self.TextIOWrapper(b, encoding="ascii", errors="strict")
2153 t = self.TextIOWrapper(b, encoding="ascii", errors="ignore",
2160 t = self.TextIOWrapper(b, encoding="ascii", errors="replace",
2191 textio = self.TextIOWrapper(bufio, newline=newline,
2219 txt = self.TextIOWrapper(buf, encoding="ascii", newline=newline)
2234 txt = self.TextIOWrapper(buf, encoding="ascii", newline=newline)
2250 t = self.TextIOWrapper(b, encoding="ascii")
2258 class MyTextIO(self.TextIOWrapper):
2284 self.TextIOWrapper(rawio).xyzzy
2454 f = self.TextIOWrapper(buf, encoding=encoding)
2468 txt = self.TextIOWrapper(UnReadable())
2472 txt = self.TextIOWrapper(self.BytesIO(b"AA\r\nBB"))
2482 txt = self.TextIOWrapper(self.BytesIO(b"AA\nBB\nCC"))
2492 txt = self.TextIOWrapper(self.BytesIO(b"A" * 127 + b"\r\nB"))
2504 txt = self.TextIOWrapper(buf)
2512 txt = self.TextIOWrapper(buf)
2518 txt = self.TextIOWrapper(self.BytesIO())
2524 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
2536 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
2548 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
2559 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
2567 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
2578 txt = self.TextIOWrapper(buffer, encoding="ascii")
2639 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
2654 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
2661 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
2673 t = self.TextIOWrapper(NonbytesStream('a'))
2676 t = self.TextIOWrapper(NonbytesStream('a'))
2679 t = self.TextIOWrapper(NonbytesStream('a'))
2693 t = io.TextIOWrapper(io.BytesIO(b'foo'), encoding="rot13")
2705 t = self.TextIOWrapper(self.BytesIO(b'aaaaaa'),
2712 t = self.TextIOWrapper(self.BytesIO(b'aaaaaa'), newline='\n',
2717 t = self.TextIOWrapper(self.BytesIO(b'aaaaaa'), newline='\n',
2722 t = self.TextIOWrapper(self.BytesIO(b'aaaaaa'), newline='\n',
2756 t = self.TextIOWrapper(self.BytesIO(b'test'), encoding='ascii')
2760 t = self.TextIOWrapper(self.BytesIO(b'test'), encoding='ascii')
2771 t = self.TextIOWrapper(b)
2777 t = self.TextIOWrapper.__new__(self.TextIOWrapper)
2786 t = self.TextIOWrapper(b, encoding="ascii")
2802 t1 = self.TextIOWrapper(b1, encoding="ascii")
2804 t2 = self.TextIOWrapper(b2, encoding="ascii")