From: Martin Panter Date: Mon, 20 Jun 2016 08:00:45 +0000 (+0000) Subject: Fix “allow(s) to” X-Git-Tag: v3.6.0a3~107 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=df1d31c2cdcdd478fbff507d3b906fb93f66c49b;p=thirdparty%2FPython%2Fcpython.git Fix “allow(s) to” --- diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index e7e01a632f46..9a2191237b45 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -113,7 +113,7 @@ See :pep:`498` and the main documentation at :ref:`f-strings`. PYTHONMALLOC environment variable --------------------------------- -The new :envvar:`PYTHONMALLOC` environment variable allows to set the Python +The new :envvar:`PYTHONMALLOC` environment variable allows setting the Python memory allocators and/or install debug hooks. It is now possible to install debug hooks on Python memory allocators on Python diff --git a/Misc/NEWS b/Misc/NEWS index c89e85dee68c..7855d3de8c31 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -11,7 +11,7 @@ Library ------- - Issue #27319: Methods selection_set(), selection_add(), selection_remove() - and selection_toggle() of ttk.TreeView now allow to pass multiple items as + and selection_toggle() of ttk.TreeView now allow passing multiple items as multiple arguments instead of passing them as a tuple. Deprecated undocumented ability of calling the selection() method with arguments.