[Python-checkins] More updates to the annotated assignments docs (GH-13794)

Ivan Levkivskyi webhook-mailer at python.org
Tue Jun 4 06:37:50 EDT 2019


https://github.com/python/cpython/commit/8bcf2629a2e27267edba98fd3b5ed274b25aeb2d
commit: 8bcf2629a2e27267edba98fd3b5ed274b25aeb2d
branch: master
author: Ivan Levkivskyi <levkivskyi at gmail.com>
committer: GitHub <noreply at github.com>
date: 2019-06-04T11:37:46+01:00
summary:

More updates to the annotated assignments docs (GH-13794)

files:
M Doc/reference/simple_stmts.rst

diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst
index 9c0430da1fb2..0a043a90050c 100644
--- a/Doc/reference/simple_stmts.rst
+++ b/Doc/reference/simple_stmts.rst
@@ -330,10 +330,9 @@ statement, of a variable or attribute annotation and an optional assignment stat
 
 .. productionlist::
    annotated_assignment_stmt: `augtarget` ":" `expression`
-                            : ["=" (`expression_list` | `yield_expression`)]
+                            : ["=" (`starred_expression` | `yield_expression`)]
 
-The difference from normal :ref:`assignment` is that only single target and
-only single right hand side value is allowed.
+The difference from normal :ref:`assignment` is that only single target is allowed.
 
 For simple names as assignment targets, if in class or module scope,
 the annotations are evaluated and stored in a special class or module
@@ -369,7 +368,7 @@ target, then the interpreter evaluates the target except for the last
 
 .. versionchanged:: 3.8
    Now annotated assignments allow same expressions in the right hand side as
-   the augmented assignments. Previously, some expressions (like un-parenthesized
+   the regular assignments. Previously, some expressions (like un-parenthesized
    tuple expressions) caused a syntax error.
 
 



More information about the Python-checkins mailing list