#3914: add //= to the augmented assign operators.

This commit is contained in:
Georg Brandl 2008-09-21 07:18:28 +00:00
parent 73ac29e426
commit 83463ce8d4
1 changed files with 1 additions and 1 deletions

View File

@ -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