Re: Accessing Module variables from another Module

2007-09-05 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit : > On Sep 5, 1:22 pm, Bruno Desthuilliers [EMAIL PROTECTED]> wrote: >> [EMAIL PROTECTED] a écrit : >> >>> Hi >>> I am new to Python (I have come from a large background of Java) and >>> wondered if someone could explain to me how I can access variables >>> stored in my m

Re: Accessing Module variables from another Module

2007-09-05 Thread cjt22
On Sep 5, 1:22 pm, Bruno Desthuilliers wrote: > [EMAIL PROTECTED] a écrit : > > > Hi > > > I am new to Python (I have come from a large background of Java) and > > wondered if someone could explain to me how I can access variables > > stored in my main module to other functions within other module

Re: Accessing Module variables from another Module

2007-09-05 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit : > Hi > > I am new to Python (I have come from a large background of Java) and > wondered if someone could explain to me how I can access variables > stored in my main module to other functions within other modules > called > from this module > (snip code) > I am curren

Re: Accessing Module variables from another Module

2007-09-05 Thread Daniel Larsson
On 9/5/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi > > I am new to Python (I have come from a large background of Java) and > wondered if someone could explain to me how I can access variables > stored in my main module to other functions within other modules > called > from this module

Accessing Module variables from another Module

2007-09-05 Thread cjt22
Hi I am new to Python (I have come from a large background of Java) and wondered if someone could explain to me how I can access variables stored in my main module to other functions within other modules called from this module for example file: main.py from Storage import store from Initialise