[Python-checkins] cpython (3.6): Issue 28751: Fix comments in code.h. (Contributed by Ned Batchelder).

raymond.hettinger python-checkins at python.org
Mon Nov 21 17:24:57 EST 2016


https://hg.python.org/cpython/rev/88880a916174
changeset:   105302:88880a916174
branch:      3.6
parent:      105300:c508baa300bb
user:        Raymond Hettinger <python at rcn.com>
date:        Mon Nov 21 14:24:32 2016 -0800
summary:
  Issue 28751: Fix comments in code.h.  (Contributed by Ned Batchelder).

files:
  Include/code.h |  7 +++----
  1 files changed, 3 insertions(+), 4 deletions(-)


diff --git a/Include/code.h b/Include/code.h
--- a/Include/code.h
+++ b/Include/code.h
@@ -32,9 +32,8 @@
     PyObject *co_varnames;	/* tuple of strings (local variable names) */
     PyObject *co_freevars;	/* tuple of strings (free variable names) */
     PyObject *co_cellvars;      /* tuple of strings (cell variable names) */
-    /* The rest aren't used in either hash or comparisons, except for
-       co_name (used in both) and co_firstlineno (used only in
-       comparisons).  This is done to preserve the name and line number
+    /* The rest aren't used in either hash or comparisons, except for co_name,
+       used in both. This is done to preserve the name and line number
        for tracebacks and debuggers; otherwise, constant de-duplication
        would collapse identical functions/lambdas defined on different lines.
     */
@@ -45,7 +44,7 @@
 				   Objects/lnotab_notes.txt for details. */
     void *co_zombieframe;     /* for optimization only (see frameobject.c) */
     PyObject *co_weakreflist;   /* to support weakrefs to code objects */
-    /* Scratch space for extra data relating to the code object.__icc_nan
+    /* Scratch space for extra data relating to the code object.
        Type is a void* to keep the format private in codeobject.c to force
        people to go through the proper APIs. */
     void *co_extra;

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list