The original command python line
Devin Jeanpierre
jeanpierreda at gmail.com
Sun Mar 4 02:19:25 EST 2012
On Sun, Mar 4, 2012 at 1:20 AM, Damjan Georgievski <gdamjan at gmail.com> wrote:
> How come?
> I'm using explicit relative imports, I thought they were the new thing?
Explicit relative imports are fine. Implicit relative imports can
create multiple module objects for the same source file, which breaks
things like exception handling (because exception types are unequal if
they're from different classes, even if the different classes come
from two executions of the same source code).
-- Devin
More information about the Python-list
mailing list