Re: merging the global namespaces of two modules

2008-05-22 Thread Diez B. Roggisch
Fabrizio Pollastri wrote: > Jeff wrote: >> Can you be more specific? modA and modB don't import from each other >> but both need to access objects in the global namespace of what >> module? The controlling application? > >> Or do you mean that, for >> example, modA needs to access some function

Re: merging the global namespaces of two modules

2008-05-22 Thread Bruno Desthuilliers
Fabrizio Pollastri a écrit : Hi, just an import problem: a program imports two modules, modA and modB, each module do not known anything about the other module (i.e. no cross imports in them), both modules needs to refer to some functions that are defined in the global namespace of the other

Re: merging the global namespaces of two modules

2008-05-22 Thread Fabrizio Pollastri
Jeff wrote: Can you be more specific? modA and modB don't import from each other but both need to access objects in the global namespace of what module? The controlling application? Or do you mean that, for example, modA needs to access some functions in modB, but does not have import statem

Re: merging the global namespaces of two modules

2008-05-22 Thread Jeff
Can you be more specific? modA and modB don't import from each other but both need to access objects in the global namespace of what module? The controlling application? Or do you mean that, for example, modA needs to access some functions in modB, but does not have import statements to do so, a