This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: setup.py support for xxmodule without tkinker
Type: Stage: resolved
Components: Build Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: danielsh, python-dev
Priority: normal Keywords: patch

Created on 2012-12-19 20:01 by danielsh, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
setupxxmodule.diff danielsh, 2012-12-19 20:01 review
Messages (2)
msg177775 - (view) Author: Daniel Shahaf (danielsh) Date: 2012-12-19 20:01
In setup.py, the logic or enabling xxmodule/xxlimited is currently in detect_tkinker(), so it's not run when one of the 'return' statements in the latter is executed.  On a box without tk installed, xxmodule.o gets built with the attached patch but not without.
msg199811 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-10-13 21:38
New changeset c167ab1c49c9 by Georg Brandl in branch '2.7':
Closes #16732: move "xxmodule" comment block to detect_modules().  (Already done in 3.x)
http://hg.python.org/cpython/rev/c167ab1c49c9
History
Date User Action Args
2022-04-11 14:57:39adminsetgithub: 60936
2013-10-13 21:38:17python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg199811

resolution: fixed
stage: resolved
2012-12-19 20:01:23danielshcreate