On Tuesday, May 26, 2015 at 2:58:49 PM UTC+2, [email protected] wrote: > > >> But another thing came to my mind: a 'using_without_export' operator that >> imports a package and builds the module but doesn't do the exports. So i >> could load/import e.g. two plotting packages both defining 'plot' but have >> no interference in the current scope a the functions are only accessed by >> ModuleAlpha.plot and ModuleBeta.plot. >> > > Can't you already do that? > > import ModuleAlpha > import ModuleBeta > > and then the names are only available qualified as ModuleAlpha.plot and > ModuleBeta.plot >
You are right, i always forget import over using.
