File tree Expand file tree Collapse file tree 5 files changed +150
-190
lines changed
Expand file tree Collapse file tree 5 files changed +150
-190
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ extern "C" {
1313
1414extern PyStatus _PyExc_InitState (PyInterpreterState * );
1515extern PyStatus _PyExc_InitGlobalObjects (PyInterpreterState * );
16- extern PyStatus _PyExc_InitTypes (PyInterpreterState * );
16+ extern int _PyExc_InitTypes (PyInterpreterState * );
1717extern void _PyExc_Fini (PyInterpreterState * );
1818
1919
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ extern PyStatus _PySys_ReadPreinitWarnOptions(PyWideStringList *options);
5959extern PyStatus _PySys_ReadPreinitXOptions (PyConfig * config );
6060extern int _PySys_UpdateConfig (PyThreadState * tstate );
6161extern void _PySys_Fini (PyInterpreterState * interp );
62- extern PyStatus _PyBuiltins_AddExceptions (PyObject * bltinmod );
62+ extern int _PyBuiltins_AddExceptions (PyObject * bltinmod );
6363extern PyStatus _Py_HashRandomization_Init (const PyConfig * );
6464
6565extern PyStatus _PyImportZip_Init (PyThreadState * tstate );
Original file line number Diff line number Diff line change 11BaseException
2- ├── SystemExit
3- ├── KeyboardInterrupt
4- ├── GeneratorExit
52 ├── BaseExceptionGroup
3+ ├── GeneratorExit
4+ ├── KeyboardInterrupt
5+ ├── SystemExit
66 └── Exception
7- ├── ExceptionGroup [BaseExceptionGroup]
8- ├── StopIteration
9- ├── StopAsyncIteration
107 ├── ArithmeticError
118 │ ├── FloatingPointError
129 │ ├── OverflowError
@@ -15,6 +12,7 @@ BaseException
1512 ├── AttributeError
1613 ├── BufferError
1714 ├── EOFError
15+ ├── ExceptionGroup [BaseExceptionGroup]
1816 ├── ImportError
1917 │ └── ModuleNotFoundError
2018 ├── LookupError
@@ -43,6 +41,8 @@ BaseException
4341 ├── RuntimeError
4442 │ ├── NotImplementedError
4543 │ └── RecursionError
44+ ├── StopAsyncIteration
45+ ├── StopIteration
4646 ├── SyntaxError
4747 │ └── IndentationError
4848 │ └── TabError
@@ -54,14 +54,14 @@ BaseException
5454 │ ├── UnicodeEncodeError
5555 │ └── UnicodeTranslateError
5656 └── Warning
57+ ├── BytesWarning
5758 ├── DeprecationWarning
59+ ├── EncodingWarning
60+ ├── FutureWarning
61+ ├── ImportWarning
5862 ├── PendingDeprecationWarning
63+ ├── ResourceWarning
5964 ├── RuntimeWarning
6065 ├── SyntaxWarning
61- ├── UserWarning
62- ├── FutureWarning
63- ├── ImportWarning
6466 ├── UnicodeWarning
65- ├── BytesWarning
66- ├── EncodingWarning
67- └── ResourceWarning
67+ └── UserWarning
You can’t perform that action at this time.
0 commit comments