From: Berker Peksag Date: Sun, 6 Mar 2016 14:50:44 +0000 (+0200) Subject: Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.py X-Git-Tag: v3.6.0a1~522 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d07a1cb53b3d5b3b68b92207f308b6bfb9235a33;p=thirdparty%2FPython%2Fcpython.git Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.py Patch by Guo Ci Teo. --- d07a1cb53b3d5b3b68b92207f308b6bfb9235a33 diff --cc Misc/NEWS index f7d12343855b,81c7dc8c6dee..9c94db324dc6 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -828,24 -328,11 +828,27 @@@ Window Tools/Demos ----------- + - Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.py. + Patch by Guo Ci Teo. + - Issue #26316: Fix variable name typo in Argument Clinic. +- Issue #25440: Fix output of python-config --extension-suffix. + +- Issue #25154: The pyvenv script has been deprecated in favour of + `python3 -m venv`. + +C API +----- + +- Issue #26312: SystemError is now raised in all programming bugs with using + PyArg_ParseTupleAndKeywords(). RuntimeError did raised before in some + programming bugs. + +- Issue #26198: ValueError is now raised instead of TypeError on buffer + overflow in parsing "es#" and "et#" format units. SystemError is now raised + instead of TypeError on programmical error in parsing format string. + What's New in Python 3.5.1 final? =================================