issues
search
randy3k
/
AutomaticPackageReloader
Automatically reload submodules while developing a Sublime Text package.
MIT License
38
stars
13
forks
source link
Fix reloading importer
#49
Closed
deathaxe
closed
10 months ago
deathaxe
commented
11 months ago
This commit...
uses
importlib.reload()
if present as
imp
module is deprecated as of python 3.4 and removed in python 3.12. New library is prepared to work well with newer
__spec__
based import machinery.
make sure to resolve
fromlist
using reloaded module
This commit...
importlib.reload()
if present asimp
module is deprecated as of python 3.4 and removed in python 3.12. New library is prepared to work well with newer__spec__
based import machinery.fromlist
using reloaded module