diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2024-01-30 16:21:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-30 16:21:30 (GMT) |
commit | 39d102c2ee8eec8ab0bacbcd62d62a72742ecc7c (patch) | |
tree | f1dab9719fa4b0bda6f06be2b6f99465053761d9 /PC | |
parent | 1f515e8a109204f7399d85b7fd806135166422d9 (diff) | |
download | cpython-39d102c2ee8eec8ab0bacbcd62d62a72742ecc7c.zip cpython-39d102c2ee8eec8ab0bacbcd62d62a72742ecc7c.tar.gz cpython-39d102c2ee8eec8ab0bacbcd62d62a72742ecc7c.tar.bz2 |
gh-113744: Add a new IncompleteInputError exception to improve incomplete input detection in the codeop module (#113745)
Signed-off-by: Pablo Galindo <pablogsal@gmail.com>
Diffstat (limited to 'PC')
-rwxr-xr-x | PC/python3dll.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/PC/python3dll.c b/PC/python3dll.c index 07aa84c..09ecf98 100755 --- a/PC/python3dll.c +++ b/PC/python3dll.c @@ -830,6 +830,7 @@ EXPORT_DATA(PyExc_FutureWarning) EXPORT_DATA(PyExc_GeneratorExit) EXPORT_DATA(PyExc_ImportError) EXPORT_DATA(PyExc_ImportWarning) +EXPORT_DATA(PyExc_IncompleteInputError) EXPORT_DATA(PyExc_IndentationError) EXPORT_DATA(PyExc_IndexError) EXPORT_DATA(PyExc_InterruptedError) |