Checked out the tab-support on the new console -
COOL! I'm going to have to peek at this code
shortly...
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Martin MalySent: Tuesday, August 02, 2005 10:20 AMTo:
users-ironpython.com@lists.ironpython.comSubject: [IronPython
IronPython.Objects.Dict dictionaries seem to be changed in a strange way
in 0.7.5...
In IronPython-0.7.4,
>>>
sys.modules.Contains("site")
True
in
IronPython-0.7.5
>>>sys.modules.Contains("site")
>>>
sys.modules.Contains("site")IronPython.Objects.PythonValueError: bad args to
this
Does anyone know how
to get at the global __dict__ from inside a module (without passing it in as an
argument, of course)? __dict__ is special in some way: when you do a
dir() at toplevel you don't see it; looking at globals() gives you the same
info. Am I missing something?
-Sumit