• Home
  • Raw
  • Download

Lines Matching refs:BytesIO

201 class CMockFileIO(MockFileIO, io.BytesIO):
204 class PyMockFileIO(MockFileIO, pyio.BytesIO):
416 f = self.BytesIO()
420 f = self.BytesIO(data)
1116 self.tp(io.BytesIO(), 1024, 1024, 1024)
1255 raw = io.BytesIO()
1428 self.tp(io.BytesIO(), 1024, 1024, 1024)
1478 pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO())
1483 pair = self.tp(self.BytesIO(b"abc"), self.MockRawIO())
1487 pair = lambda: self.tp(self.BytesIO(b"abc\ndef\nh"), self.MockRawIO())
1495 pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO())
1500 pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO())
1519 pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO())
1650 raw = self.BytesIO(b"asdfghjkl")
1673 raw = self.BytesIO(b"abcdefghi")
1712 raw = self.BytesIO(b"abcdefghi")
1760 raw = self.BytesIO(b"A" * 10)
1792 raw = self.BytesIO(b)
1803 raw = self.BytesIO(b"A" * 10)
1816 with self.BytesIO(b'abcdefgh') as raw:
1831 with self.BytesIO(b'abc') as raw:
1840 with self.BytesIO(b'ab\ncdef\ng\n') as raw:
1873 self.tp(io.BytesIO(), 1024, 1024, 1024)
2035 r = self.BytesIO(b"\xc3\xa9\n\n")
2063 r = self.BytesIO()
2069 r = self.BytesIO()
2088 raw = self.BytesIO("hello".encode("utf-8"))
2105 r = self.BytesIO()
2117 b = self.BytesIO()
2126 b = self.BytesIO(b"abc\n\xff\n")
2130 b = self.BytesIO(b"abc\n\xff\n")
2134 b = self.BytesIO(b"abc\n\xff\n")
2138 b = self.BytesIO(b"abc\n\xff\n")
2144 b = self.BytesIO()
2148 b = self.BytesIO()
2152 b = self.BytesIO()
2159 b = self.BytesIO()
2190 bufio = self.BufferedReader(self.BytesIO(data), bufsize)
2218 buf = self.BytesIO(testdata)
2233 buf = self.BytesIO()
2244 base = self.BytesIO
2273 b = self.BytesIO()
2453 buf = self.BytesIO()
2465 class UnReadable(self.BytesIO):
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"))
2503 buf = self.BytesIO()
2511 buf = self.BytesIO()
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")
2577 buffer = self.BytesIO(self.testdata)
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")
2662 buf = self.BytesIO(self.testdata)
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')
2769 r = self.BytesIO(b"\xc3\xa9\n\n")