summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-06-30 23:45:08 (GMT)
committerGitHub <noreply@github.com>2023-06-30 23:45:08 (GMT)
commit46c1097868745eeb47abbc8af8c34e8fcb80ff1d (patch)
tree29749fa3f2b4c3364b8024de3decc25cd103fd34 /Parser
parent904aef994262383ae916545908f0578c2d53cf31 (diff)
downloadcpython-46c1097868745eeb47abbc8af8c34e8fcb80ff1d.zip
cpython-46c1097868745eeb47abbc8af8c34e8fcb80ff1d.tar.gz
cpython-46c1097868745eeb47abbc8af8c34e8fcb80ff1d.tar.bz2
gh-106145: Make `end_{lineno,col_offset}` required on `type_param` nodes (#106224)
Diffstat (limited to 'Parser')
-rw-r--r--Parser/Python.asdl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/Python.asdl b/Parser/Python.asdl
index 93632a0..0d15486 100644
--- a/Parser/Python.asdl
+++ b/Parser/Python.asdl
@@ -148,5 +148,5 @@ module Python
type_param = TypeVar(identifier name, expr? bound)
| ParamSpec(identifier name)
| TypeVarTuple(identifier name)
- attributes (int lineno, int col_offset, int? end_lineno, int? end_col_offset)
+ attributes (int lineno, int col_offset, int end_lineno, int end_col_offset)
}