Removes the pack format from the registry.
(name)
| 1297 | _UNPACK_FORMATS[name] = extensions, function, extra_args, description |
| 1298 | |
| 1299 | def unregister_unpack_format(name): |
| 1300 | """Removes the pack format from the registry.""" |
| 1301 | del _UNPACK_FORMATS[name] |
| 1302 | |
| 1303 | def _ensure_directory(path): |
| 1304 | """Ensure that the parent directory of `path` exists""" |
no outgoing calls