(self)
| 1835 | support.gc_collect() |
| 1836 | |
| 1837 | def test_name_closed_socketio(self): |
| 1838 | with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock: |
| 1839 | fp = sock.makefile("rb") |
| 1840 | fp.close() |
| 1841 | self.assertEqual(repr(fp), "<_io.BufferedReader name=-1>") |
| 1842 | |
| 1843 | def test_unusable_closed_socketio(self): |
| 1844 | with socket.socket() as sock: |
nothing calls this directly
no test coverage detected