diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-03-05 18:42:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-05 18:42:06 (GMT) |
commit | d8b3a98c9098c66a714fd5593e1928af0ffbc631 (patch) | |
tree | dc9c2290f796ec697adcfa12942f773646f8f13c /Parser | |
parent | adfffc7343ce7ebc88ec734a803d3247ba8927fb (diff) | |
download | cpython-d8b3a98c9098c66a714fd5593e1928af0ffbc631.zip cpython-d8b3a98c9098c66a714fd5593e1928af0ffbc631.tar.gz cpython-d8b3a98c9098c66a714fd5593e1928af0ffbc631.tar.bz2 |
bpo-36187: Remove NamedStore. (GH-12167)
NamedStore has been replaced with Store. The difference between
NamedStore and Store is handled when precess the NamedExpr node
one level upper.
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 85b686d..1ccd2ca 100644 --- a/Parser/Python.asdl +++ b/Parser/Python.asdl @@ -91,7 +91,7 @@ module Python -- col_offset is the byte offset in the utf8 string the parser uses attributes (int lineno, int col_offset, int? end_lineno, int? end_col_offset) - expr_context = Load | Store | Del | AugLoad | AugStore | Param | NamedStore + expr_context = Load | Store | Del | AugLoad | AugStore | Param slice = Slice(expr? lower, expr? upper, expr? step) | ExtSlice(slice* dims) |