[Python-checkins] cpython (merge 3.4 -> default): Issue #21665: Don't use 'OPTS=noxp' when compiling Tk.

zach.ware python-checkins at python.org
Thu Jun 5 19:02:06 CEST 2014


http://hg.python.org/cpython/rev/b3063de0dbd9
changeset:   91035:b3063de0dbd9
parent:      91033:4b51a992cb70
parent:      91034:baac4ea2901b
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Thu Jun 05 11:53:44 2014 -0500
summary:
  Issue #21665: Don't use 'OPTS=noxp' when compiling Tk.

That option had been for Win2k compatibility (which was dropped with
Python 3.3) and makes default ttk ugly on post-Win2k systems.

files:
  PCbuild/tk.vcxproj |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/PCbuild/tk.vcxproj b/PCbuild/tk.vcxproj
--- a/PCbuild/tk.vcxproj
+++ b/PCbuild/tk.vcxproj
@@ -153,9 +153,9 @@
 IF "$(Platform)" EQU "x64" set TclMachine=AMD64
 
 IF "$(Configuration)" EQU "Debug" (
-    set TclOpts=symbols,noxp
+    set TclOpts=symbols
 ) ELSE (
-    set TclOpts=noxp
+    set TclOpts=
 )
 
 cd $(tkDir)\win

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list