Serhiy Storchaka <storchaka+cpyt...@gmail.com> added the comment:

It can also crash.

    ast.literal_eval('+0'*10**6)

The cause is that all AST handling C code (in particularly converting the AST 
from C to Python) is recursive, and therefore can overflow the C stack. Some 
recursive code has arbitrary limits which cause raising exceptions like 
MemoryError in the initial example, but not all code has such checks.

----------
nosy: +serhiy.storchaka

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

Reply via email to