MCPcopy Index your code
hub / github.com/python/cpython / test_read1_0

Method test_read1_0

Lib/test/test_lzma.py:995–997  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

993 self.assertEqual(f.read1(), b"")
994
995 def test_read1_0(self):
996 with LZMAFile(BytesIO(COMPRESSED_XZ)) as f:
997 self.assertEqual(f.read1(0), b"")
998
999 def test_read1_10(self):
1000 with LZMAFile(BytesIO(COMPRESSED_XZ)) as f:

Callers

nothing calls this directly

Calls 4

LZMAFileClass · 0.90
BytesIOClass · 0.90
assertEqualMethod · 0.45
read1Method · 0.45

Tested by

no test coverage detected