diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-07-01 00:15:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-01 00:15:18 (GMT) |
commit | 0616c83f57a8d2fd62d12ddaba987052c5015260 (patch) | |
tree | 8977e6011ae7b1e69e0ef949a5ff4f2f6c68b85e /Parser | |
parent | d6a5a30669b1bb383f05208299fa911720d4d88b (diff) | |
download | cpython-0616c83f57a8d2fd62d12ddaba987052c5015260.zip cpython-0616c83f57a8d2fd62d12ddaba987052c5015260.tar.gz cpython-0616c83f57a8d2fd62d12ddaba987052c5015260.tar.bz2 |
[3.12] gh-106145: Make `end_{lineno,col_offset}` required on `type_param` nodes (GH-106224) (#106295)
gh-106145: Make `end_{lineno,col_offset}` required on `type_param` nodes (GH-106224)
(cherry picked from commit 46c1097868745eeb47abbc8af8c34e8fcb80ff1d)
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/Python.asdl | 2 |
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) } |