mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
If a code object is compiled with nested scopes, define the CO_NESTED flag.
Add PyEval_GetNestedScopes() which returns a non-zero value if the code for the current interpreter frame has CO_NESTED defined.
This commit is contained in:
parent
f6e47ad4bd
commit
061d106a0f
4 changed files with 13 additions and 1 deletions
|
@ -2666,6 +2666,14 @@ PyEval_GetRestricted(void)
|
|||
return current_frame == NULL ? 0 : current_frame->f_restricted;
|
||||
}
|
||||
|
||||
int
|
||||
PyEval_GetNestedScopes(void)
|
||||
{
|
||||
PyFrameObject *current_frame = PyThreadState_Get()->frame;
|
||||
return current_frame == NULL ? 0 :
|
||||
current_frame->f_code->co_flags & CO_NESTED;
|
||||
}
|
||||
|
||||
int
|
||||
Py_FlushLine(void)
|
||||
{
|
||||
|
@ -3448,7 +3456,7 @@ exec_statement(PyFrameObject *f, PyObject *prog, PyObject *globals,
|
|||
else if (PyFile_Check(prog)) {
|
||||
FILE *fp = PyFile_AsFile(prog);
|
||||
char *name = PyString_AsString(PyFile_Name(prog));
|
||||
v = PyRun_File(fp, name, Py_file_input, globals, locals);
|
||||
v = PyRun_File(fp, name, Py_file_input, globals, locals);
|
||||
}
|
||||
else {
|
||||
char *str;
|
||||
|
|
|
@ -4276,6 +4276,8 @@ static int
|
|||
symtable_update_flags(struct compiling *c, PySymtableEntryObject *ste,
|
||||
struct symbol_info *si)
|
||||
{
|
||||
if (c->c_future && c->c_future->ff_nested_scopes)
|
||||
c->c_flags |= CO_NESTED;
|
||||
if (ste->ste_type != TYPE_MODULE)
|
||||
c->c_flags |= CO_NEWLOCALS;
|
||||
if (ste->ste_type == TYPE_FUNCTION) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue