[Python-checkins] r59132 - in python/trunk: Parser/tokenizer.c Python/ast.c

Christian Heimes lists at cheimes.de
Fri Nov 23 13:13:51 CET 2007


Georg Brandl wrote:
> $ ./python -3 x.py
> [...]
> sys:1: DeprecationWarning: <> not supported in 3.x
> 
> $ ./python -3
> [...]
>  >>> import x
> __main__:1: DeprecationWarning: <> not supported in 3.x

Oh ... I see. I just used the shell to test the new deprecation
warnings. I've fixed most of the problem except of the file name for
back quotes. The AST nodes only contain the line number but not the file
name.

Christian


More information about the Python-checkins mailing list