RE: [IronPython] IronPython 0.9 released

2005-08-02 Thread Sumit Basu
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] Contains() doesn't work anymore for sys.modules?

2005-05-23 Thread Sumit Basu
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

[IronPython] getting at the global __dict__ from a module?

2005-05-21 Thread Sumit Basu
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