diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-09-11 08:03:14 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-09-11 08:03:14 (GMT) |
commit | 9fab79bcb5b83dc0247ce4cd60486341c73e7fd5 (patch) | |
tree | b24f07e6f0ccb42ae02628248d1b521d6700386f /Include/ceval.h | |
parent | c16595e567d51a1773be30c34622620b52be7acf (diff) | |
download | cpython-9fab79bcb5b83dc0247ce4cd60486341c73e7fd5.zip cpython-9fab79bcb5b83dc0247ce4cd60486341c73e7fd5.tar.gz cpython-9fab79bcb5b83dc0247ce4cd60486341c73e7fd5.tar.bz2 |
Issue #26900: Excluded underscored names and other private API from limited API.
Diffstat (limited to 'Include/ceval.h')
-rw-r--r-- | Include/ceval.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/ceval.h b/Include/ceval.h index c682063..89c6062 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -179,7 +179,9 @@ PyAPI_FUNC(void) PyEval_RestoreThread(PyThreadState *); PyAPI_FUNC(int) PyEval_ThreadsInitialized(void); PyAPI_FUNC(void) PyEval_InitThreads(void); +#ifndef Py_LIMITED_API PyAPI_FUNC(void) _PyEval_FiniThreads(void); +#endif /* !Py_LIMITED_API */ PyAPI_FUNC(void) PyEval_AcquireLock(void); PyAPI_FUNC(void) PyEval_ReleaseLock(void); PyAPI_FUNC(void) PyEval_AcquireThread(PyThreadState *tstate); |