diff options
author | Vlad Emelianov <volshebnyi@gmail.com> | 2020-03-01 19:59:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-01 19:59:26 (GMT) |
commit | 768d739c1cd8c1d41902229581811a9b86bcc76e (patch) | |
tree | 353a2dcf73b4bfa2247e6612511568c29e508215 /Misc | |
parent | 0b0d29fce568e61e0d7d9f4a362e6dbf1e7fb80a (diff) | |
download | cpython-768d739c1cd8c1d41902229581811a9b86bcc76e.zip cpython-768d739c1cd8c1d41902229581811a9b86bcc76e.tar.gz cpython-768d739c1cd8c1d41902229581811a9b86bcc76e.tar.bz2 |
bpo-38641: Add lib2to3 support for starred expressions in return/yield statements (GH-16994)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-10-30-15-31-09.bpo-38641.HrTL9k.rst | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -1914,5 +1914,6 @@ Jelle Zijlstra Gennadiy Zlobin Doug Zongker Peter Åstrand +Vlad Emelianov (Entries should be added in rough alphabetical order by last names) diff --git a/Misc/NEWS.d/next/Library/2019-10-30-15-31-09.bpo-38641.HrTL9k.rst b/Misc/NEWS.d/next/Library/2019-10-30-15-31-09.bpo-38641.HrTL9k.rst new file mode 100644 index 0000000..c547712 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-10-30-15-31-09.bpo-38641.HrTL9k.rst @@ -0,0 +1,2 @@ +Added starred expressions support to ``return`` and ``yield`` statements for +``lib2to3``. Patch by Vlad Emelianov. |