Displaying 1 result from an estimated 1 matches for "notimportfrom".
2013 Sep 06
1
directives to explicitely exclude objects from import into namespaces
...some few imports,
while I would prefer to still import all the non-conflicting objects,
methods, and classes of the respective package namespace.
So would it be possible to have some new directives along the lines
import(<pkg>) ## importing the whole namespace of <pkg> in a first step
notimportFrom(<pkg>, <obj1>, <obj2>,....)
## exclude <obj1>, <obj2>, ... again from the previous namespace import
## and, similarly,
notimportMethodsFrom(<pkg>, <meth1>, <meth2>,....)
notimportClassesFrom(<pkg>, <cls1>, <cls2&g...