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