summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-05-18 05:44:29 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-05-18 05:44:29 (GMT)
commit094c9c921cc889f1aac99bbcc26b70b19f8ef1d9 (patch)
treeb1b277a2de09a9d534a9bebc1d5b563b7dc54258 /Misc
parent93d22ecc7c7e2d3413bb21e0264a293f7884caee (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cbea5fd..213a864 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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