mirror of
https://github.com/python/cpython.git
synced 2025-10-17 04:08:28 +00:00
Implement the frame evaluation API aspect of PEP 523.
This commit is contained in:
parent
625cb379f7
commit
3cebf93872
6 changed files with 47 additions and 3 deletions
|
@ -91,6 +91,7 @@ PyInterpreterState_New(void)
|
|||
interp->fscodec_initialized = 0;
|
||||
interp->importlib = NULL;
|
||||
interp->import_func = NULL;
|
||||
interp->eval_frame = _PyEval_EvalFrameDefault;
|
||||
#ifdef HAVE_DLOPEN
|
||||
#if HAVE_DECL_RTLD_NOW
|
||||
interp->dlopenflags = RTLD_NOW;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue