diff options
| author | Georg Brandl <georg@python.org> | 2008-09-21 07:18:28 (GMT) | 
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2008-09-21 07:18:28 (GMT) | 
| commit | 83463ce8d4a74a0955fb2d5a09ca16a80f4fe745 (patch) | |
| tree | 798abb4c35ef35c7ea8be679017fefb9fab64e17 | |
| parent | 73ac29e426e913fd5e416f96acb6bb00c0585b80 (diff) | |
| download | cpython-83463ce8d4a74a0955fb2d5a09ca16a80f4fe745.zip cpython-83463ce8d4a74a0955fb2d5a09ca16a80f4fe745.tar.gz cpython-83463ce8d4a74a0955fb2d5a09ca16a80f4fe745.tar.bz2 | |
#3914: add //= to the augmented assign operators.
| -rw-r--r-- | Doc/reference/simple_stmts.rst | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index 4d0e865..f8df013 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 | 
