[Numpy-discussion] StringIO test failure with Python3.1.2

David Cournapeau cournape at gmail.com
Wed Mar 24 10:43:08 EDT 2010


On Wed, Mar 24, 2010 at 11:35 PM, Nadav Horesh <nadavh at visionsense.com> wrote:
> Any idea why
>
>  from .io import StringIO
>
> and not
>
>  from io import StringIO
>
> ???
>
> (Why is the extra "." before "io")

Maybe a bug in py2to3, because StringIO is in io in python 3, and we
have a io module in numpy (.io is the new syntax for relative import).

David



More information about the NumPy-Discussion mailing list