[IronPython] type.__call__

Sanghyeon Seo sanxiyn at gmail.com
Wed Jul 12 03:07:24 CEST 2006


Can anyone reproduce this import bug? SQLAlchemy 0.2.5 release should do.

2006/7/11, Sanghyeon Seo <sanxiyn at gmail.com>:
> There also seems to be a strange import bug, but I couldn't reduce it.
>
> How to reproduce:
>
> import sqlalchemy
>
> Workaround. Swapping following two lines seem to "fix" this with no ill effect:
>
> from sqlalchemy import util
> import util as mapperutil
>
> To:
>
> import util as mapperutil
> from sqlalchemy import util
>
> Seo Sanghyeon



More information about the Ironpython-users mailing list