From 7f0174c6152d1041fa3e94d5a5e09832bdb98583 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Fri, 6 Oct 2000 15:56:27 +0000 Subject: [PATCH] add request to support parsing of deeply nested expressions --- pep-0042.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pep-0042.txt b/pep-0042.txt index 4b12827e3..223db3f8c 100644 --- a/pep-0042.txt +++ b/pep-0042.txt @@ -62,6 +62,15 @@ Core Language / Builtins http://sourceforge.net/bugs/?func=detailbug&group_id=5470&bug_id=115143 + - The parser should handle more deeply nested parse trees. + + The following will fail -- eval("["*50 + "]"*50) -- because the + parser has a hard-coded limit on stack size. This limit should + be raised or removed. Removal would be hard because the + current compiler can overflow the C stack if the nesting is too + deep. + + http://sourceforge.net/bugs/?func=detailbug&bug_id=115555&group_id=5470 Standard Library