Lines Matching refs:BytesIO

227 class CMockFileIO(MockFileIO, io.BytesIO):
230 class PyMockFileIO(MockFileIO, pyio.BytesIO):
247 class CMockUnseekableIO(MockUnseekableIO, io.BytesIO):
250 class PyMockUnseekableIO(MockUnseekableIO, pyio.BytesIO):
442 return self.BufferedRandom(self.BytesIO())
465 (self.BytesIO, "rws"), (self.StringIO, "rws"),
583 f = self.BytesIO()
587 f = self.BytesIO(data)
710 check(self.BytesIO())
837 self.BytesIO()
1497 b = io.BufferedReader(io.BytesIO(b"12"))
1552 self.tp(io.BytesIO(), 1024, 1024, 1024)
1690 raw = io.BytesIO()
1895 self.tp(io.BytesIO(), 1024, 1024, 1024)
1944 pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO())
1949 pair = self.tp(self.BytesIO(b"abc"), self.MockRawIO())
1953 pair = lambda: self.tp(self.BytesIO(b"abc\ndef\nh"), self.MockRawIO())
1961 pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO())
1969 pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO())
1988 pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO())
2121 raw = self.BytesIO(b"asdfghjkl")
2144 raw = self.BytesIO(b"abcdefghi")
2183 raw = self.BytesIO(b"abcdefghi")
2231 raw = self.BytesIO(b"A" * 10)
2263 raw = self.BytesIO(b)
2274 raw = self.BytesIO(b"A" * 10)
2287 with self.BytesIO(b'abcdefgh') as raw:
2302 with self.BytesIO(b'abc') as raw:
2311 with self.BytesIO(b'ab\ncdef\ng\n') as raw:
2348 self.tp(io.BytesIO(), 1024, 1024, 1024)
2510 r = self.BytesIO(b"\xc3\xa9\n\n")
2538 r = self.BytesIO()
2544 r = self.BytesIO()
2564 raw = self.BytesIO("hello".encode("utf-8"))
2585 raw = self.BytesIO()
2594 r = self.BytesIO()
2605 r = self.BytesIO()
2643 b = self.BytesIO()
2655 b = self.BytesIO()
2663 b = self.BytesIO()
2672 b = self.BytesIO(b"abc\n\xff\n")
2676 b = self.BytesIO(b"abc\n\xff\n")
2680 b = self.BytesIO(b"abc\n\xff\n")
2684 b = self.BytesIO(b"abc\n\xff\n")
2690 b = self.BytesIO()
2694 b = self.BytesIO()
2698 b = self.BytesIO()
2705 b = self.BytesIO()
2736 bufio = self.BufferedReader(self.BytesIO(data), bufsize)
2764 buf = self.BytesIO(testdata)
2779 buf = self.BytesIO()
2790 base = self.BytesIO
2819 b = self.BytesIO()
2997 buf = self.BytesIO()
3009 class UnReadable(self.BytesIO):
3016 txt = self.TextIOWrapper(self.BytesIO(b"AA\r\nBB"))
3026 txt = self.TextIOWrapper(self.BytesIO(b"AA\nBB\nCC"))
3036 txt = self.TextIOWrapper(self.BytesIO(b"A" * 127 + b"\r\nB"))
3047 buf = self.BytesIO()
3055 buf = self.BytesIO()
3062 txt = self.TextIOWrapper(self.BytesIO())
3068 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3080 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3092 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3103 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3111 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3121 buffer = self.BytesIO(self.testdata)
3196 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3211 buffer = self.BytesIO(self.testdata)
3228 buffer = self.BytesIO(self.testdata)
3244 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3256 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3257 buf = self.BytesIO(self.testdata)
3294 rawio = self.BytesIO()
3352 t = io.TextIOWrapper(io.BytesIO(b'foo'), encoding="rot13")
3362 t = self.TextIOWrapper(self.BytesIO(b'aaaaaa'),
3463 raw = self.BytesIO(data)
3475 raw = self.BytesIO()
3485 raw = self.BytesIO()
3496 raw = self.BytesIO()
3505 raw = self.BytesIO()
3518 txt = self.TextIOWrapper(self.BytesIO(), 'ascii', 'replace', '\n')
3541 raw = self.BytesIO(b'CR\rEOF')
3545 raw = self.BytesIO(b'CR\rEOF')
3549 raw = self.BytesIO(b'CR\rLF\nEOF')
3553 raw = self.BytesIO(b'LF\nCR\rEOF')
3557 raw = self.BytesIO(b'CR\rCRLF\r\nEOF')
3562 txt = self.TextIOWrapper(self.BytesIO(), 'ascii', newline='\r')
3578 t = self.TextIOWrapper(self.BytesIO(b'test'), encoding='ascii')
3582 t = self.TextIOWrapper(self.BytesIO(b'test'), encoding='ascii')
3588 class MemviewBytesIO(io.BytesIO):
3612 r = self.BytesIO(b"\xc3\xa9\n\n")
3653 t = self.TextIOWrapper(self.BytesIO(), encoding='ascii')