Can't see variables declared as global in a function

2008-04-16 Thread Jacob Davis
Hi. I have a hundred lines of code in a module that declare some global variables inside a function so that those variables can be used by other functions. I want to import this module so that I can more easily debug by looking at the value of individual variables. But when I try to

Re: Can't see variables declared as global in a function

2008-04-16 Thread Gary Herron
Jacob Davis wrote: Hi. I have a hundred lines of code in a module that declare some global variables inside a function so that those variables can be used by other functions. I want to import this module so that I can more easily debug by looking at the value of individual variables.