[issue5733] py3_test_grammar.py syntax error

2009-04-11 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: So the error during libinstall should be ignored http://docs.python.org/dev/results/make-install.out -- ___ Python tracker ___

[issue5733] py3_test_grammar.py syntax error

2009-04-11 Thread Benjamin Peterson
Benjamin Peterson added the comment: Quite correct. -- nosy: +benjamin.peterson resolution: wont fix -> invalid status: pending -> closed ___ Python tracker ___ _

[issue5733] py3_test_grammar.py syntax error

2009-04-11 Thread Georg Brandl
Georg Brandl added the comment: I think this file is only meant as a test that 2to3 can parse both 2.x and 3.x syntax, not Python itself. -- nosy: +georg.brandl resolution: -> wont fix status: open -> pending ___ Python tracker

[issue5733] py3_test_grammar.py syntax error

2009-04-09 Thread Kurt B. Kaiser
New submission from Kurt B. Kaiser : Try running it as a script: File "Lib/lib2to3/tests/data/py3_test_grammar.py", line 130 x = ... ^ SyntaxError: invalid syntax Furthermore, testEllipsis seems invalid. What is intended? >>> class C: def __getitem__(self, x): return x