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