[Python-checkins] r66526 - python/trunk/Doc/reference/simple_stmts.rst

georg.brandl python-checkins at python.org
Sun Sep 21 09:18:29 CEST 2008


Author: georg.brandl
Date: Sun Sep 21 09:18:28 2008
New Revision: 66526

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


Modified:
   python/trunk/Doc/reference/simple_stmts.rst

Modified: python/trunk/Doc/reference/simple_stmts.rst
==============================================================================
--- python/trunk/Doc/reference/simple_stmts.rst	(original)
+++ python/trunk/Doc/reference/simple_stmts.rst	Sun Sep 21 09:18:28 2008
@@ -229,7 +229,7 @@
 
 .. productionlist::
    augmented_assignment_stmt: `target` `augop` (`expression_list` | `yield_expression`)
-   augop: "+=" | "-=" | "*=" | "/=" | "%=" | "**="
+   augop: "+=" | "-=" | "*=" | "/=" | "//=" | "%=" | "**="
         : | ">>=" | "<<=" | "&=" | "^=" | "|="
 
 (See section :ref:`primaries` for the syntax definitions for the last three


More information about the Python-checkins mailing list