Re: "from module import *" and modifying module's top-level vars

2006-10-29 Thread Diez B. Roggisch
[EMAIL PROTECTED] schrieb: > Hi everyone, > > I define some vars and functions in a "support" module which gets > called from my > main app module. Using Python 2.5. > > I import all symbols in the support module at the top of the main > module through: > > from support import * > > Is there a

"from module import *" and modifying module's top-level vars

2006-10-29 Thread lemke_juergen
Hi everyone, I define some vars and functions in a "support" module which gets called from my main app module. Using Python 2.5. I import all symbols in the support module at the top of the main module through: from support import * Is there a way for me to modify a top-level ("global"?) variab