diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-05-18 05:44:29 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-05-18 05:44:29 (GMT) |
commit | 094c9c921cc889f1aac99bbcc26b70b19f8ef1d9 (patch) | |
tree | b1b277a2de09a9d534a9bebc1d5b563b7dc54258 /Misc | |
parent | 93d22ecc7c7e2d3413bb21e0264a293f7884caee (diff) | |
download | cpython-094c9c921cc889f1aac99bbcc26b70b19f8ef1d9.zip cpython-094c9c921cc889f1aac99bbcc26b70b19f8ef1d9.tar.gz cpython-094c9c921cc889f1aac99bbcc26b70b19f8ef1d9.tar.bz2 |
Issue #23275: Allow () = iterable assignment syntax
Documentation updates by Martin Panter.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -22,6 +22,9 @@ Release date: 2016-05-16 Core and Builtins ----------------- +- Issue #23275: Allow assigning to an empty target list in round brackets: + () = iterable. + - Issue #26991: Fix possible refleak when creating a function with annotations. - Issue #27039: Fixed bytearray.remove() for values greater than 127. Based on |