diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2021-10-22 23:13:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-22 23:13:46 (GMT) |
commit | f30ad65dbf3c6b1b5eec14dc954d65ef32327857 (patch) | |
tree | 410d8eb9335a1e405cbc7092e8f5a36e592ad712 /PC | |
parent | 4bc5473a42c5eae0928430930b897209492e849d (diff) | |
download | cpython-f30ad65dbf3c6b1b5eec14dc954d65ef32327857.zip cpython-f30ad65dbf3c6b1b5eec14dc954d65ef32327857.tar.gz cpython-f30ad65dbf3c6b1b5eec14dc954d65ef32327857.tar.bz2 |
bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (GH-28569)
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 d9e6fd3..d2a8707 100755 --- a/PC/python3dll.c +++ b/PC/python3dll.c @@ -754,6 +754,7 @@ EXPORT_DATA(PyExc_ArithmeticError) EXPORT_DATA(PyExc_AssertionError) EXPORT_DATA(PyExc_AttributeError) EXPORT_DATA(PyExc_BaseException) +EXPORT_DATA(PyExc_BaseExceptionGroup) EXPORT_DATA(PyExc_BlockingIOError) EXPORT_DATA(PyExc_BrokenPipeError) EXPORT_DATA(PyExc_BufferError) |