summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2019-06-03 07:34:20 (GMT)
committerGitHub <noreply@github.com>2019-06-03 07:34:20 (GMT)
commit8565f6b6db0fa9f65449b532a5056a98bad3dc37 (patch)
treeeeeed2b04e30d603a40efbeb8da748325f5f74c3 /Misc
parentd9677f36fe486e86bb86f2cd59cb7fc3804bdac1 (diff)
downloadcpython-8565f6b6db0fa9f65449b532a5056a98bad3dc37.zip
cpython-8565f6b6db0fa9f65449b532a5056a98bad3dc37.tar.gz
cpython-8565f6b6db0fa9f65449b532a5056a98bad3dc37.tar.bz2
bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-13760)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-06-03-00-51-02.bpo-35814.Cf7sGY.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-06-03-00-51-02.bpo-35814.Cf7sGY.rst b/Misc/NEWS.d/next/Core and Builtins/2019-06-03-00-51-02.bpo-35814.Cf7sGY.rst
new file mode 100644
index 0000000..2b9f00a
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-06-03-00-51-02.bpo-35814.Cf7sGY.rst
@@ -0,0 +1,2 @@
+Allow unpacking in the right hand side of annotated assignments. In
+particular, ``t: Tuple[int, ...] = x, y, *z`` is now allowed.