mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Fix silly typo in comment.
This commit is contained in:
parent
bc961e5714
commit
bdc6ea1110
1 changed files with 1 additions and 1 deletions
|
@ -609,7 +609,7 @@ PyFrame_New(PyThreadState *tstate, PyCodeObject *code, PyObject *globals,
|
|||
/* Most functions have CO_NEWLOCALS and CO_OPTIMIZED set. */
|
||||
if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) ==
|
||||
(CO_NEWLOCALS | CO_OPTIMIZED))
|
||||
locals = NULL; /* PyFrame_Fast2Locals() will set. */
|
||||
locals = NULL; /* PyFrame_FastToLocals() will set. */
|
||||
else if (code->co_flags & CO_NEWLOCALS) {
|
||||
locals = PyDict_New();
|
||||
if (locals == NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue