On Wed, Mar 24, 2010 at 09:43, David Cournapeau <[email protected]> wrote: > On Wed, Mar 24, 2010 at 11:35 PM, Nadav Horesh <[email protected]> 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).
Ignore my previous email. This is the correct answer. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth." -- Umberto Eco _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
