On Sun, Sep 29, 2013 at 8:57 PM, Dave Angel <da...@davea.name> wrote: > Try help(globals()) at the interpreter prompt. > > Help on built-in function globals in module builtins: > > globals(...) > globals() -> dictionary > > Return the dictionary containing the current scope's global variables.
Insignificant quibble: help(globals()) will give you help on the dict type. What you actually want here is help(globals). Otherwise agreed. ChrisA -- https://mail.python.org/mailman/listinfo/python-list