How to access my module global vars ?

Kepes Krisztian Kepes.Krisztian at peto.hu
Tue Nov 25 12:47:12 EST 2003


Hi !

How to access my module global vars ?

Some applications I want to declare global vars (constants).

But in the module I cannot access them:


DEF_X=120

class N:
      def DO(y):
          return(DEF_X*y)

It creates error.


But if I create an aux. unit in other file:

===file1===

DEF_X=120

===main===
from file1 import *;

class N:
      def DO(y):
          return(DEF_X*y)

it works good.

So: how I can create local (unit level) constants ?

Thanx:
 KK






More information about the Python-list mailing list