diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2003-05-22 15:47:02 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2003-05-22 15:47:02 (GMT) |
commit | 521482d84f2f66949dc9824703c6ea3dad8d6f9c (patch) | |
tree | ea0290cbb3342e5d612ac58b6267b42069090b5b | |
parent | c8fb937fbf8313917792ebcaf242b0a66155d801 (diff) | |
download | cpython-521482d84f2f66949dc9824703c6ea3dad8d6f9c.zip cpython-521482d84f2f66949dc9824703c6ea3dad8d6f9c.tar.gz cpython-521482d84f2f66949dc9824703c6ea3dad8d6f9c.tar.bz2 |
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.
-rw-r--r-- | Python/compile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/compile.c b/Python/compile.c index 76a3711..8c051bc 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. */ |