Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork34.1k
Closed
Description
C extensionsshould not use private functions (functions prefixed by_Py), butPEP 523 only added private functions:
_PyInterpreterState_GetEvalFrameFunc()_PyInterpreterState_SetEvalFrameFunc()_PyEval_EvalFrameDefault()
I propose promoting these functions as public functions (just remove the_ prefix):
PyUnstable_InterpreterState_GetEvalFrameFunc()PyUnstable_InterpreterState_SetEvalFrameFunc()PyUnstable_Eval_EvalFrameDefault()
Update: I addedPyUnstable_ prefix to function names.