problem with 'global'

Marc 'BlackJack' Rintsch bj_666 at gmx.net
Mon Jan 21 14:18:18 EST 2008


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



More information about the Python-list mailing list