()
| 19 | |
| 20 | @contextlib.contextmanager |
| 21 | def ignore_byteswarning(): |
| 22 | with warnings.catch_warnings(): |
| 23 | warnings.filterwarnings('ignore', category=BytesWarning) |
| 24 | yield |
| 25 | |
| 26 | |
| 27 | # builtin types |
no outgoing calls
no test coverage detected
searching dependent graphs…