I am using IronPython 2.0 Release Candidate 2
>ipy Program.py Traceback (most recent call last): File "Program.py", line 22, in Program.py File "mscorlib", line unknown, in get_Item File "mscorlib", line unknown, in ThrowKeyNotFoundException KeyError: The given key was not present in the dictionary. Line 22 where it fails has: from PI import * I expect all modules from the PI folder to be loaded. The PI folder has __init__.py which has the following line: __all__ = ["Authentication"] Authentication.py is in the PI folder. I replaced the erring line with : sys.path.append(r'.\PI') from Authentication import * and it worked. Does IronPython not recognize packages? Thanks, Yash
_______________________________________________ Users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
