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; echo "    return (x)" >> 
bar.py; done
$ python3.5 -m py_compile bar.py

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24226>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to