[IronPython] Does IronPython 2.0 not recognize packages?

Yash Ganthe yashgt at gmail.com
Tue Dec 2 09:34:32 CET 2008


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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/ironpython-users/attachments/20081202/fd2af29b/attachment.html>


More information about the Ironpython-users mailing list