[Python-checkins] bpo-40502: Initialize n->n_col_offset (GH-19988)

Joannah Nanjekye webhook-mailer at python.org
Fri May 8 16:58:36 EDT 2020


https://github.com/python/cpython/commit/d10091aa171250c67a5079abfe26b8b3964ea39a
commit: d10091aa171250c67a5079abfe26b8b3964ea39a
branch: master
author: Joannah Nanjekye <33177550+nanjekyejoannah at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-05-08T17:58:28-03:00
summary:

bpo-40502: Initialize n->n_col_offset (GH-19988)

* initialize n->n_col_offset

* 📜🤖 Added by blurb_it.

* Move initialization

Co-authored-by: nanjekyejoannah <joannah.nanjekye at ibm.com>
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>

files:
A Misc/NEWS.d/next/Core and Builtins/2020-05-08-03-25-26.bpo-40502.e-VCyL.rst
M Parser/node.c

diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-05-08-03-25-26.bpo-40502.e-VCyL.rst b/Misc/NEWS.d/next/Core and Builtins/2020-05-08-03-25-26.bpo-40502.e-VCyL.rst
new file mode 100644
index 0000000000000..b0ea60234634c
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-05-08-03-25-26.bpo-40502.e-VCyL.rst	
@@ -0,0 +1,2 @@
+Initialize ``n->n_col_offset``.
+(Patch by Joannah Nanjekye)
\ No newline at end of file
diff --git a/Parser/node.c b/Parser/node.c
index f1b70e0f6815b..8789e01e9b848 100644
--- a/Parser/node.c
+++ b/Parser/node.c
@@ -14,6 +14,7 @@ PyNode_New(int type)
     n->n_str = NULL;
     n->n_lineno = 0;
     n->n_end_lineno = 0;
+    n->n_col_offset = 0;
     n->n_end_col_offset = -1;
     n->n_nchildren = 0;
     n->n_child = NULL;



More information about the Python-checkins mailing list