| 697 | def test_buffered_readinto_mixin(self): |
| 698 | # Test the implementation provided by BufferedIOBase |
| 699 | class Stream(self.BufferedIOBase): |
| 700 | def read(self, size): |
| 701 | return b"12345" |
| 702 | read1 = read |
| 703 | stream = Stream() |
| 704 | for method in ("readinto", "readinto1"): |
| 705 | with self.subTest(method): |
no outgoing calls
searching dependent graphs…