(mode)
| 329 | _WRITE_CHARS = ("w", "a", "x", "+") |
| 330 | |
| 331 | def _is_write_mode(mode): |
| 332 | return any(ch in mode for ch in _WRITE_CHARS) |
| 333 | |
| 334 | class MixedWriteTextIO(object): |
| 335 | """ |
no outgoing calls
no test coverage detected
searching dependent graphs…