mirror of https://github.com/python/cpython
#3914: add //= to the augmented assign operators.
This commit is contained in:
parent
73ac29e426
commit
83463ce8d4
|
@ -229,7 +229,7 @@ operation and an assignment statement:
|
||||||
|
|
||||||
.. productionlist::
|
.. productionlist::
|
||||||
augmented_assignment_stmt: `target` `augop` (`expression_list` | `yield_expression`)
|
augmented_assignment_stmt: `target` `augop` (`expression_list` | `yield_expression`)
|
||||||
augop: "+=" | "-=" | "*=" | "/=" | "%=" | "**="
|
augop: "+=" | "-=" | "*=" | "/=" | "//=" | "%=" | "**="
|
||||||
: | ">>=" | "<<=" | "&=" | "^=" | "|="
|
: | ">>=" | "<<=" | "&=" | "^=" | "|="
|
||||||
|
|
||||||
(See section :ref:`primaries` for the syntax definitions for the last three
|
(See section :ref:`primaries` for the syntax definitions for the last three
|
||||||
|
|
Loading…
Reference in New Issue