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
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
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
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