summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2020-03-17 21:41:08 (GMT)
committerGitHub <noreply@github.com>2020-03-17 21:41:08 (GMT)
commit6b97598fb66a08d0f36e4d73bffea5c1b17740d4 (patch)
tree5fb1922e733a71ad26788b1d5f3f9575ca015600 /Parser
parentdab8423d220243efabbbcafafc12d90145539b50 (diff)
downloadcpython-6b97598fb66a08d0f36e4d73bffea5c1b17740d4.zip
cpython-6b97598fb66a08d0f36e4d73bffea5c1b17740d4.tar.gz
cpython-6b97598fb66a08d0f36e4d73bffea5c1b17740d4.tar.bz2
bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)
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 19b5e1a..11d877d 100644
--- a/Parser/Python.asdl
+++ b/Parser/Python.asdl
@@ -90,7 +90,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
+ expr_context = Load | Store | Del
boolop = And | Or