mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Fix indentation.
This commit is contained in:
parent
fcefd0d2a5
commit
174d276d8c
1 changed files with 1 additions and 1 deletions
|
@ -744,7 +744,7 @@ PyFrame_FastToLocals(PyFrameObject *f)
|
|||
if (j > f->f_nlocals)
|
||||
j = f->f_nlocals;
|
||||
if (f->f_nlocals)
|
||||
map_to_dict(map, j, locals, fast, 0);
|
||||
map_to_dict(map, j, locals, fast, 0);
|
||||
if (f->f_ncells || f->f_nfreevars) {
|
||||
if (!(PyTuple_Check(f->f_code->co_cellvars)
|
||||
&& PyTuple_Check(f->f_code->co_freevars))) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue