[Python-checkins] bpo-37333: Ensure IncludeTkinter has a value (GH-14240)

Steve Dower webhook-mailer at python.org
Wed Jun 19 16:07:51 EDT 2019


https://github.com/python/cpython/commit/12f1c726d8328e5e096c35c36901f6d19bc942d3
commit: 12f1c726d8328e5e096c35c36901f6d19bc942d3
branch: master
author: Steve Dower <steve.dower at python.org>
committer: GitHub <noreply at github.com>
date: 2019-06-19T13:07:23-07:00
summary:

bpo-37333: Ensure IncludeTkinter has a value (GH-14240)

files:
M PCbuild/python.props

diff --git a/PCbuild/python.props b/PCbuild/python.props
index 0f93a0038366..c38be2c7418b 100644
--- a/PCbuild/python.props
+++ b/PCbuild/python.props
@@ -81,6 +81,9 @@
     
     <!-- Full path of the resulting python.exe binary -->
     <PythonExe Condition="'$(PythonExe)' == ''">$(BuildPath)python$(PyDebugExt).exe</PythonExe>
+
+    <!-- Include Tkinter by default -->
+    <IncludeTkinter Condition="'$(IncludeTkinter)' == ''">true</IncludeTkinter>
   </PropertyGroup>
   
   <PropertyGroup Condition="'$(Platform)'=='ARM'" Label="ArmConfiguration">



More information about the Python-checkins mailing list