Hi,<br><br>I ran across this while trying to get sqlalchemy working with IronPython.<br>If&nbsp;a&nbsp;package's __init__.py defines a method with the same name as a module in that package, you can't import the module.<br><br>example:
<br>test.py::<br>import foo.bar as b<br>print b<br><br><br>foo/__init__.py::<br>def bar():<br>&nbsp;&nbsp;&nbsp;&nbsp;pass<br><br>foo/bar.py::<br>pass<br><br><br>-----------------------------<br>C:\IronPython-1.0-Beta9&gt;python test.py<br>&lt;module '
foo.bar' from 'C:\IronPython-1.0-Beta9\foo\bar.py'&gt;<br><br>C:\IronPython-1.0-Beta9&gt;ipy test.py<br>&lt;function bar at 0x000000000000002B&gt;<br><br>-------------------------------<br><br><br><br>