Re: multiple import of a load of variables

2005-03-16 Thread Jeff Shannon
Torsten Bronger wrote: HallÃchen! "Fuzzyman" <[EMAIL PROTECTED]> writes: [...] I'm not entirely clear what you are trying to do The following: "variables.py" looks like this a = 1 b = 2 Then I have helper_a.py, helper_b.py, and helper_c.py which begin with from variables import * And finally, my_

Re: multiple import of a load of variables

2005-03-16 Thread Fuzzyman
Torsten Bronger wrote: > Hallöchen! > > "Fuzzyman" <[EMAIL PROTECTED]> writes: > > > [...] > > > > I'm not entirely clear what you are trying to do > > The following: "variables.py" looks like this > > a = 1 > b = 2 > > Then I have helper_a.py, helper_b.py, and helper_c.py which begin > with > > f

Re: multiple import of a load of variables

2005-03-16 Thread Torsten Bronger
HallÃchen! "Fuzzyman" <[EMAIL PROTECTED]> writes: > [...] > > I'm not entirely clear what you are trying to do The following: "variables.py" looks like this a = 1 b = 2 Then I have helper_a.py, helper_b.py, and helper_c.py which begin with from variables import * And finally, my_module.py st

Re: multiple import of a load of variables

2005-03-16 Thread Fuzzyman
Torsten Bronger wrote: > Hallöchen! > > I have a file that looks a little bit like a C header file with a > long list of variables (actually constants) definitions, e.g. > > VI_ATTR_TIMO = 0x54378 > ... > > Actually I need this in a couple of low-level modules that are > imported into the main mod

multiple import of a load of variables

2005-03-16 Thread Torsten Bronger
HallÃchen! I have a file that looks a little bit like a C header file with a long list of variables (actually constants) definitions, e.g. VI_ATTR_TIMO = 0x54378 ... Actually I need this in a couple of low-level modules that are imported into the main module, and in the main module itself. They