summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.5.rst
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-05-22 16:36:53 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-05-22 16:36:53 (GMT)
commit7dc9dea7784c2e8cd07af11d1757ae58a3492bd6 (patch)
tree1721a591d3af3f79043e7a92b5dd0ca55b9c9ce4 /Doc/whatsnew/3.5.rst
parent3cfec2e2fcab9f39121cec362b78ac235093ca1c (diff)
downloadcpython-7dc9dea7784c2e8cd07af11d1757ae58a3492bd6.zip
cpython-7dc9dea7784c2e8cd07af11d1757ae58a3492bd6.tar.gz
cpython-7dc9dea7784c2e8cd07af11d1757ae58a3492bd6.tar.bz2
Issue #20035: Reimplement tkinter._fix module as a C function.
The new private C function makes no permanent changes to the environment and is #ifdef'd out on non-Windows platforms.
Diffstat (limited to 'Doc/whatsnew/3.5.rst')
-rw-r--r--Doc/whatsnew/3.5.rst10
1 files changed, 9 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index b2571ae..a149417 100644
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -1,4 +1,4 @@
-****************************
+****************************
What's New In Python 3.5
****************************
@@ -659,6 +659,14 @@ time
* The :func:`time.monotonic` function is now always available. (Contributed by
Victor Stinner in :issue:`22043`.)
+tkinter
+-------
+
+* The :module:`tkinter._fix` module used for setting up the Tcl/Tk environment
+ on Windows has been replaced by a private function in the :module:`_tkinter`
+ module which makes no permanent changes to environment variables.
+ (Contributed by Zachary Ware in :issue:`20035`.)
+
types
-----