File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1371,22 +1371,22 @@ is also available in the :mod:`!token` module documentation.
13711371 :group: python-grammar
13721372
13731373 OP:
1374- | arithmetic_operator
1374+ | assignment_operator
13751375 | bitwise_operator
13761376 | comparison_operator
13771377 | enclosing_delimiter
13781378 | other_delimiter
1379- | assignment_operator
1380- | other_op
1379+ | arithmetic_operator
13811380 | "..."
1381+ | other_op
13821382
1383- arithmetic_operator: "+" | "-" | "*" | "**" | "/" | "//" | "%"
1384- bitwise_operator: "&" | "|" | "^" | "~" | "<<" | ">>"
13851383 assignment_operator: "+=" | "-=" | "*=" | "**=" | "/=" | "//=" | "%=" |
13861384 "&=" | "|=" | "^=" | "<<=" | ">>=" | "@=" | ":="
1387- comparison_operator: "<" | ">" | "<=" | ">=" | "==" | "!="
1385+ bitwise_operator: "&" | "|" | "^" | "~" | "<<" | ">>"
1386+ comparison_operator: "<=" | ">=" | "<" | ">" | "==" | "!="
13881387 enclosing_delimiter: "(" | ")" | "[" | "]" | "{" | "}"
13891388 other_delimiter: "," | ":" | "!" | ";" | "=" | "->"
1389+ arithmetic_operator: "+" | "-" | "* *" | "*" | "//" | "/" | "%"
13901390 other_op: "." | "@"
13911391
13921392.. note ::
You can’t perform that action at this time.
0 commit comments