mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
#3914: add //= to the augmented assign operators.
This commit is contained in:
parent
73ac29e426
commit
83463ce8d4
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ operation and an assignment statement:
|
|||
|
||||
.. productionlist::
|
||||
augmented_assignment_stmt: `target` `augop` (`expression_list` | `yield_expression`)
|
||||
augop: "+=" | "-=" | "*=" | "/=" | "%=" | "**="
|
||||
augop: "+=" | "-=" | "*=" | "/=" | "//=" | "%=" | "**="
|
||||
: | ">>=" | "<<=" | "&=" | "^=" | "|="
|
||||
|
||||
(See section :ref:`primaries` for the syntax definitions for the last three
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue