[issue24226] [3.5 Regression] unable to byte-compile the attached IN.py

2015-05-18 Thread Yury Selivanov
Yury Selivanov added the comment: Thanks! Closing the issue. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ __

[issue24226] [3.5 Regression] unable to byte-compile the attached IN.py

2015-05-18 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: This change works for me. -- ___ Python tracker ___ ___ Python-bugs-list mailin

[issue24226] [3.5 Regression] unable to byte-compile the attached IN.py

2015-05-18 Thread Yury Selivanov
Yury Selivanov added the comment: Arfrever, Matthias, Thanks for reporting this issue. It should now be fixed. Please verify that it works for your usecase. -- nosy: +gvanrossum, ncoghlan ___ Python tracker ___

[issue24226] [3.5 Regression] unable to byte-compile the attached IN.py

2015-05-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset fb5fcae0cf1f by Yury Selivanov in branch 'default': Issue 24226: Fix parsing of many sequential one-line 'def' statements. https://hg.python.org/cpython/rev/fb5fcae0cf1f -- nosy: +python-dev ___ Python tr

[issue24226] [3.5 Regression] unable to byte-compile the attached IN.py

2015-05-18 Thread Zachary Ware
Changes by Zachary Ware : -- assignee: -> yselivanov nosy: +Arfrever priority: normal -> release blocker type: -> behavior ___ Python tracker ___ __

[issue24226] [3.5 Regression] unable to byte-compile the attached IN.py

2015-05-18 Thread Matthias Klose
Changes by Matthias Klose : -- components: +Interpreter Core -Library (Lib) ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue24226] [3.5 Regression] unable to byte-compile the attached IN.py

2015-05-18 Thread Matthias Klose
Matthias Klose added the comment: this seems to be caused by the PEP 492 merge in r95969. -- nosy: +yselivanov ___ Python tracker ___

[issue24226] [3.5 Regression] unable to byte-compile the attached IN.py

2015-05-18 Thread Matthias Klose
Matthias Klose added the comment: looks like a parser issue: $ for i in $(seq 200); do echo "def f$i(x): return (x)" >> foo.py; done $ python3.5 -m py_compile foo.py Sorry: IndentationError: too many levels of indentation (foo.py, line 100) $ for i in $(seq 200); do echo "def f$i(x):">>bar.py;

[issue24226] [3.5 Regression] unable to byte-compile the attached IN.py

2015-05-18 Thread Matthias Klose
Changes by Matthias Klose : Added file: http://bugs.python.org/file39418/IN.py ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue24226] [3.5 Regression] unable to byte-compile the attached IN.py

2015-05-18 Thread Matthias Klose
New submission from Matthias Klose: seen while byte-compiling the attached IN.py on x86_64-linux-gnu. $ python3.5 -m py_compile IN.py Sorry: IndentationError: too many levels of indentation (IN.py, line 806) the very same IN.py is accepted by 3.4. -- components: Library (Lib) messages