] On Behalf Of Jesse Granden
Sent: Sunday, July 23, 2006 3:06 PM
To: users@lists.ironpython.com
Subject: [IronPython] Import Bug with 1.0 Beta 9
Hi,
I ran across this while trying to get sqlalchemy working with IronPython.
If a package's __init__.py defines a method with the same name as a
Hi,I ran across this while trying to get sqlalchemy working with IronPython.If a package's __init__.py defines a method with the same name as a module in that package, you can't import the module.example:
test.py::import foo.bar as bprint bfoo/__init__.py::def bar():passfoo/bar.py::pass