]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Add new parser error code, E_OVERFLOW. This error is returned when
authorJeremy Hylton <jeremy@alum.mit.edu>
Tue, 20 Jun 2000 19:10:44 +0000 (19:10 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Tue, 20 Jun 2000 19:10:44 +0000 (19:10 +0000)
commit94988067b96c6187fd940eaff99c2c5a68daac68
tree681d7a64160eeab1ece2685bb234971d404ef0a6
parent56c807d318954222bb67167477d98eafb6b85d81
Add new parser error code, E_OVERFLOW.  This error is returned when
the number of children of a node exceeds the max possible value for
the short that is used to count them.  The Python runtime converts
this parser error into the SyntaxError "expression too long."
Include/errcode.h
Include/node.h
Parser/node.c
Parser/parser.c
Python/pythonrun.c