]> granicus.if.org Git - python/commitdiff
#3914: add //= to the augmented assign operators.
authorGeorg Brandl <georg@python.org>
Sun, 21 Sep 2008 07:18:28 +0000 (07:18 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 21 Sep 2008 07:18:28 +0000 (07:18 +0000)
Doc/reference/simple_stmts.rst

index 4d0e865d700d669732a71bc05de3129d8931a32f..f8df0134a9942b110eeb6cb7ceec9dde343efe57 100644 (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