enable_reload

PlasmaCalcs.tools.imports.enable_reload(package='PlasmaCalcs')

smashes the import cache for the provided package.

All modules starting with this name will be removed from sys.modules.
This does not actually reload any modules.
However, it means the next time import is called for those modules, they will be reloaded.
returns tuple listing of all names of affected modules.
package: str or module
the package for which to enable reload. if module, use package.__name__.