diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-11-20 11:39:37 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-11-20 11:39:37 (GMT) |
commit | d600951748d7a19cdb3e58a376c51ed804b630e6 (patch) | |
tree | c28038ac0a6f2dbab55ceee1217ab8efb61cd64d /Include/pyerrors.h | |
parent | 66fb349d6ca325f54f2f89986146ddb8f3bcbef4 (diff) | |
download | cpython-d600951748d7a19cdb3e58a376c51ed804b630e6.zip cpython-d600951748d7a19cdb3e58a376c51ed804b630e6.tar.gz cpython-d600951748d7a19cdb3e58a376c51ed804b630e6.tar.bz2 |
Issue #22869: Split pythonrun into two modules
- interpreter startup and shutdown code moved to a new
pylifecycle.c module
- Py_OptimizeFlag moved into the new module with the other
global flags
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r-- | Include/pyerrors.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 65b09f0..8a7e4f4 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -99,6 +99,7 @@ PyAPI_FUNC(void) PyErr_SetExcInfo(PyObject *, PyObject *, PyObject *); #define _Py_NO_RETURN #endif +/* Defined in Python/pylifecycle.c */ PyAPI_FUNC(void) Py_FatalError(const char *message) _Py_NO_RETURN; #if defined(Py_DEBUG) || defined(Py_LIMITED_API) |