Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9cc9026

Browse files
committed
Issue #21055: Index (augmented) assignment symbols.
1 parent 7c895ed commit 9cc9026

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

Doc/reference/simple_stmts.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ Assignment statements
7070
=====================
7171

7272
.. index::
73+
single: =; assignment statement
7374
pair: assignment; statement
7475
pair: binding; name
7576
pair: rebinding; name
@@ -260,6 +261,18 @@ Augmented assignment statements
260261
.. index::
261262
pair: augmented; assignment
262263
single: statement; assignment, augmented
264+
single: +=; augmented assignment
265+
single: -=; augmented assignment
266+
single: *=; augmented assignment
267+
single: /=; augmented assignment
268+
single: %=; augmented assignment
269+
single: &=; augmented assignment
270+
single: ^=; augmented assignment
271+
single: |=; augmented assignment
272+
single: **=; augmented assignment
273+
single: //=; augmented assignment
274+
single: >>=; augmented assignment
275+
single: <<=; augmented assignment
263276
264277
Augmented assignment is the combination, in a single statement, of a binary
265278
operation and an assignment statement:

0 commit comments

Comments
 (0)