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

Miss Islington (bot) webhook-mailer at python.org
Wed Jun 19 16:26:10 EDT 2019


https://github.com/python/cpython/commit/389abd37ba50a327ae7388c6b016604cbd980e4b
commit: 389abd37ba50a327ae7388c6b016604cbd980e4b
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-06-19T13:25:44-07:00
summary:

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

(cherry picked from commit 12f1c726d8328e5e096c35c36901f6d19bc942d3)

Co-authored-by: Steve Dower <steve.dower at python.org>

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