Python: How can I override one module in a package with a modified version that lives outside the pa
- by zlovelady
I would like to update one module in a python package with my own version of the module, with the following conditions:
I want my updated module to live outside of the original package (either because I don't have access to the package source, or because I want to keep my local modifications in a separate repo, etc).
I want import statements that…