Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 521482d

Browse files
committed
Remove comment with very long lines that explained what the code used
to do. XXX Please be careful when checking in patches to avoid checking in junk that explains what the patched code used to do.
1 parent c8fb937 commit 521482d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Python/compile.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4628,9 +4628,9 @@ symtable_cellvar_offsets(PyObject **cellvars, int argcount,
46284628
}
46294629
}
46304630
}
4631-
if (list == NULL) /* There used to be a check here for the size of */
4632-
return 0; /* the list being 0, which would have leaked the */
4633-
/* list if that condition was ever possible. JRH */
4631+
if (list == NULL)
4632+
return 0;
4633+
46344634
/* There are cellvars that are also arguments. Create a dict
46354635
to replace cellvars and put the args at the front.
46364636
*/

0 commit comments

Comments
 (0)