[Python-checkins] cpython (merge 3.4 -> default): Merge with 3.4

terry.reedy python-checkins at python.org
Tue Apr 29 07:20:42 CEST 2014


http://hg.python.org/cpython/rev/817d86f627c4
changeset:   90505:817d86f627c4
parent:      90502:3b9a03afed0e
parent:      90504:0b946c8d7837
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Tue Apr 29 01:19:41 2014 -0400
summary:
  Merge with 3.4

files:
  Doc/reference/simple_stmts.rst |  13 +++++++++++++
  1 files changed, 13 insertions(+), 0 deletions(-)


diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst
--- a/Doc/reference/simple_stmts.rst
+++ b/Doc/reference/simple_stmts.rst
@@ -70,6 +70,7 @@
 =====================
 
 .. index::
+   single: =; assignment statement
    pair: assignment; statement
    pair: binding; name
    pair: rebinding; name
@@ -260,6 +261,18 @@
 .. index::
    pair: augmented; assignment
    single: statement; assignment, augmented
+   single: +=; augmented assignment
+   single: -=; augmented assignment
+   single: *=; augmented assignment
+   single: /=; augmented assignment
+   single: %=; augmented assignment
+   single: &=; augmented assignment
+   single: ^=; augmented assignment
+   single: |=; augmented assignment
+   single: **=; augmented assignment
+   single: //=; augmented assignment
+   single: >>=; augmented assignment
+   single: <<=; augmented assignment
 
 Augmented assignment is the combination, in a single statement, of a binary
 operation and an assignment statement:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list