search for: notimportclassesfrom

Displaying 1 result from an estimated 1 matches for "notimportclassesfrom".

2013 Sep 06
1
directives to explicitely exclude objects from import into namespaces
...ole 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>,....) in the NAMESPACE file? Otherwise the list of object, methods, classes to be explicitely imported (in my case) got very long (and hence hard to maintain) -- much longer than the list of items to be excluded from an import. Or have I overseen some obvi...