From: Jeremy Hylton Date: Thu, 22 May 2003 15:47:02 +0000 (+0000) Subject: Remove comment with very long lines that explained what the code used X-Git-Tag: v2.3c1~641 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=521482d84f2f66949dc9824703c6ea3dad8d6f9c;p=python 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. --- diff --git a/Python/compile.c b/Python/compile.c index 76a3711510..8c051bca50 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -4628,9 +4628,9 @@ symtable_cellvar_offsets(PyObject **cellvars, int argcount, } } } - if (list == NULL) /* There used to be a check here for the size of */ - return 0; /* the list being 0, which would have leaked the */ - /* list if that condition was ever possible. JRH */ + if (list == NULL) + return 0; + /* There are cellvars that are also arguments. Create a dict to replace cellvars and put the args at the front. */