1
vote
Does python optimize modules when they are imported multiple times?
The internal registry of imported modules is the sys.modules dictionary, which maps module names to module objects. You can look there to see all the modules that are currently importe …
