On Mon, 21 Jan 2008 17:08:46 -0200, Gabriel Genellina wrote:

> The future statement is another example, even worse:
> 
> if 0:
>      from __future__ import with_statement
> 
> with open("xxx") as f:
>      print f

In Python >=2.5 it's a compile time error if that import is not the very
first statement in a source file.

Ciao,
        Marc 'BlackJack' Rintsch
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to