diff options
author | jChapman <jChapman@users.noreply.github.com> | 2018-09-23 01:13:10 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-09-23 01:13:10 (GMT) |
commit | 8fabae3b00b2ccffd9f7bf4736734ae584ac5829 (patch) | |
tree | e9816636608c05ed3f6685d0f1854d7eecc60401 /Misc | |
parent | 488cfb78c8b81075942b5e4cc9630e7a6dd9dc28 (diff) | |
download | cpython-8fabae3b00b2ccffd9f7bf4736734ae584ac5829.zip cpython-8fabae3b00b2ccffd9f7bf4736734ae584ac5829.tar.gz cpython-8fabae3b00b2ccffd9f7bf4736734ae584ac5829.tar.bz2 |
bpo-32117: Iterable unpacking in return and yield documentation (GH-9487)
News entry clean up, added to what's new
Requested by @gvanrossum in https://github.com/python/cpython/pull/4509
https://bugs.python.org/issue32117
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2017-11-22-15-43-14.bpo-32117.-vloh8.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-11-22-15-43-14.bpo-32117.-vloh8.rst b/Misc/NEWS.d/next/Core and Builtins/2017-11-22-15-43-14.bpo-32117.-vloh8.rst index 9685680..8add90c 100644 --- a/Misc/NEWS.d/next/Core and Builtins/2017-11-22-15-43-14.bpo-32117.-vloh8.rst +++ b/Misc/NEWS.d/next/Core and Builtins/2017-11-22-15-43-14.bpo-32117.-vloh8.rst @@ -1,3 +1,3 @@ -Iterable unpacking is now allowed without parenthesis in yield and return +Iterable unpacking is now allowed without parentheses in yield and return statements, e.g. ``yield 1, 2, 3, *rest``. Thanks to David Cuthbert for the -change and jChapman for added tests. +change and Jordan Chapman for added tests. |