in reply to Re: Dumping symbol table shows variables declared with our but not my
in thread Dumping symbol table shows variables declared with our but not my

Thanks for cleraring up my misconceptions. I was always under the assumption that if it's not in a module, it's in main::

Useless trivia: In the 2004 Las Vegas phone book there are approximately 28 pages of ads for massage, but almost 200 for lawyers.
  • Comment on Re^2: Dumping symbol table shows variables declared with our but not my

Replies are listed 'Best First'.
Re^3: Dumping symbol table shows variables declared with our but not my
by revdiablo (Prior) on Oct 11, 2004 at 16:46 UTC
    I was always under the assumption that if it's not in a module, it's in main::

    That's true for package variables, but lexical variables (the kind you get when you use my) are not package variables. They don't live in any package at all.