From 9ef6b7fbde1fb09a0b4f548880e4160926c39c0f Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Wed, 18 May 2016 07:19:32 +0000 Subject: [PATCH] =?UTF-8?q?Issue=20#23275:=20Don=E2=80=99t=20think=20this?= =?UTF-8?q?=20made=20it=20into=20alpha=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Misc/NEWS | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS index 213a8645880..8cd2d2d8e0d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ What's New in Python 3.6.0 alpha 2 Core and Builtins ----------------- +- Issue #23275: Allow assigning to an empty target list in round brackets: + () = iterable. + Library ------- @@ -22,9 +25,6 @@ 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