diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-06-20 08:00:45 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-06-20 08:00:45 (GMT) |
commit | df1d31c2cdcdd478fbff507d3b906fb93f66c49b (patch) | |
tree | b2145d9d1a46b75974ba63cbdf41dce33eaa7a36 | |
parent | 590dcab95af162aafcb5db34a36f1a3118ac83b7 (diff) | |
download | cpython-df1d31c2cdcdd478fbff507d3b906fb93f66c49b.zip cpython-df1d31c2cdcdd478fbff507d3b906fb93f66c49b.tar.gz cpython-df1d31c2cdcdd478fbff507d3b906fb93f66c49b.tar.bz2 |
Fix “allow(s) to”
-rw-r--r-- | Doc/whatsnew/3.6.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index e7e01a6..9a21912 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 @@ -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. |