• Home
  • Raw
  • Download

Lines Matching refs:BytesIO

242 class CMockFileIO(MockFileIO, io.BytesIO):
245 class PyMockFileIO(MockFileIO, pyio.BytesIO):
262 class CMockUnseekableIO(MockUnseekableIO, io.BytesIO):
265 class PyMockUnseekableIO(MockUnseekableIO, pyio.BytesIO):
463 return self.BufferedRandom(self.BytesIO())
486 (self.BytesIO, "rws"), (self.StringIO, "rws"),
604 f = self.BytesIO()
608 f = self.BytesIO(data)
731 check(self.BytesIO())
864 self.BytesIO()
1536 b = io.BufferedReader(io.BytesIO(b"12"))
1598 self.tp(io.BytesIO(), 1024, 1024, 1024)
1601 rawio = io.BufferedReader(io.BytesIO(b"12"))
1609 rawio = io.BufferedReader(io.BytesIO(b"12"))
1752 raw = io.BytesIO()
1960 self.tp(io.BytesIO(), 1024, 1024, 1024)
2009 pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO())
2014 pair = self.tp(self.BytesIO(b"abc"), self.MockRawIO())
2018 pair = lambda: self.tp(self.BytesIO(b"abc\ndef\nh"), self.MockRawIO())
2026 pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO())
2034 pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO())
2053 pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO())
2205 raw = self.BytesIO(b"asdfghjkl")
2228 raw = self.BytesIO(b"abcdefghi")
2267 raw = self.BytesIO(b"abcdefghi")
2315 raw = self.BytesIO(b"A" * 10)
2347 raw = self.BytesIO(b)
2358 raw = self.BytesIO(b"A" * 10)
2371 with self.BytesIO(b'abcdefgh') as raw:
2386 with self.BytesIO(b'abc') as raw:
2395 with self.BytesIO(b'ab\ncdef\ng\n') as raw:
2436 self.tp(io.BytesIO(), 1024, 1024, 1024)
2598 r = self.BytesIO(b"\xc3\xa9\n\n")
2626 r = self.BytesIO()
2632 r = self.BytesIO()
2652 raw = self.BytesIO("hello".encode("utf-8"))
2673 raw = self.BytesIO()
2682 r = self.BytesIO()
2693 r = self.BytesIO()
2731 b = self.BytesIO()
2745 b = self.BytesIO()
2753 b = self.BytesIO()
2764 b = self.BytesIO(b"abc\n\xff\n")
2768 b = self.BytesIO(b"abc\n\xff\n")
2772 b = self.BytesIO(b"abc\n\xff\n")
2776 b = self.BytesIO(b"abc\n\xff\n")
2782 b = self.BytesIO()
2786 b = self.BytesIO()
2790 b = self.BytesIO()
2797 b = self.BytesIO()
2828 bufio = self.BufferedReader(self.BytesIO(data), bufsize)
2856 buf = self.BytesIO(testdata)
2871 buf = self.BytesIO()
2882 base = self.BytesIO
2911 b = self.BytesIO()
3115 buf = self.BytesIO()
3127 class UnReadable(self.BytesIO):
3134 txt = self.TextIOWrapper(self.BytesIO(b"AA\r\nBB"), encoding="utf-8")
3144 txt = self.TextIOWrapper(self.BytesIO(b"AA\nBB\nCC"), encoding="utf-8")
3154 txt = self.TextIOWrapper(self.BytesIO(b"A" * 127 + b"\r\nB"), encoding="utf-8")
3165 buf = self.BytesIO()
3173 buf = self.BytesIO()
3180 txt = self.TextIOWrapper(self.BytesIO(), encoding="utf-8")
3186 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3198 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3210 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3221 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3229 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3239 buffer = self.BytesIO(self.testdata)
3314 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3329 buffer = self.BytesIO(self.testdata)
3350 buffer = self.BytesIO(self.testdata)
3370 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3382 txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii")
3383 buf = self.BytesIO(self.testdata)
3420 rawio = self.BytesIO()
3478 t = io.TextIOWrapper(io.BytesIO(b'foo'), encoding="rot13")
3488 t = self.TextIOWrapper(self.BytesIO(b'aaaaaa'),
3587 raw = self.BytesIO(data)
3599 raw = self.BytesIO()
3609 raw = self.BytesIO()
3620 raw = self.BytesIO()
3629 raw = self.BytesIO()
3642 txt = self.TextIOWrapper(self.BytesIO(), 'ascii', 'replace', '\n')
3665 raw = self.BytesIO(b'CR\rEOF')
3669 raw = self.BytesIO(b'CR\rEOF')
3673 raw = self.BytesIO(b'CR\rLF\nEOF')
3677 raw = self.BytesIO(b'LF\nCR\rEOF')
3681 raw = self.BytesIO(b'CR\rCRLF\r\nEOF')
3686 txt = self.TextIOWrapper(self.BytesIO(), 'ascii', newline='\r')
3702 t = self.TextIOWrapper(self.BytesIO(b'test'), encoding='ascii')
3706 t = self.TextIOWrapper(self.BytesIO(b'test'), encoding='ascii')
3712 class MemviewBytesIO(io.BytesIO):
3736 r = self.BytesIO(b"\xc3\xa9\n\n")
3777 t = self.TextIOWrapper(self.BytesIO(), encoding='ascii')