Using methods defined in __init__.py within the module
Suppose I have the following directory structure: lib\ --__init__.py --foo.py --bar.py Inside foo and bar, there are seperate methods that both need the same method. For instance: foo: def meth...