Get the default TextIOWrapper chunk size
()
| 20 | |
| 21 | |
| 22 | def _default_chunk_size(): |
| 23 | """Get the default TextIOWrapper chunk size""" |
| 24 | with open(__file__, "r", encoding="latin-1") as f: |
| 25 | return f._CHUNK_SIZE |
| 26 | |
| 27 | |
| 28 | class BadIndex: |
no test coverage detected
searching dependent graphs…