From: Georg Brandl Date: Sun, 21 Sep 2008 07:18:28 +0000 (+0000) Subject: #3914: add //= to the augmented assign operators. X-Git-Tag: v2.6~64 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83463ce8d4a74a0955fb2d5a09ca16a80f4fe745;p=python #3914: add //= to the augmented assign operators. --- diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index 4d0e865d70..f8df0134a9 100644 --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -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