[Python-Dev] PEP 343 rewrite complete

Eric Nieuwland eric.nieuwland at xs4all.nl
Wed Jun 1 20:57:47 CEST 2005


Eric Nieuwland wrote:

> If I look at the translation it an augmented 'try'.
> 	with EXPR as VAR:
> 		BLOCK1
> 	except EXCEPTION:
> 		BLOCK2

Oops, that should read:

	try EXPR as VAR:
		BLOCK1
	except EXCEPTION:
		BLOCK2

--eric



More information about the Python-Dev mailing list