set line and column numbers for keyword-only arg nodes (closes #20619)
diff --git a/Python/ast.c b/Python/ast.c
index 3bd24fd..5668755 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -1203,6 +1203,8 @@
                 arg = arg(argname, annotation, c->c_arena);
                 if (!arg)
                     goto error;
+                arg->lineno = LINENO(ch);
+                arg->col_offset = ch->n_col_offset;
                 asdl_seq_SET(kwonlyargs, j++, arg);
                 i += 2; /* the name and the comma */
                 break;