Helper function analogous to pickle.loads().
(s)
| 365 | |
| 366 | |
| 367 | def restricted_loads(s): |
| 368 | """Helper function analogous to pickle.loads().""" |
| 369 | return RestrictedUnpickler(io.BytesIO(s)).load() |
| 370 | |
| 371 | |
| 372 | def flat_map(array: List[List]): |
no test coverage detected