[issue18517] "xxlimited" extension declared incorrectly in setup.py

2013-08-02 Thread Ned Deily
Ned Deily added the comment: On further reflection, only building on a debug build partially defeats part of the reason for building xxlimited; the current setup.py skips building in the debug case. Perhaps another approach would be to comment out the build in setup.py and instead add a new t

[issue18517] "xxlimited" extension declared incorrectly in setup.py

2013-08-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset e5607874e8ff by Ned Deily in branch '3.3': Issue #18517: Move definition of "xxlimited" extension to detect_modules(). http://hg.python.org/cpython/rev/e5607874e8ff New changeset 1d832bc857e2 by Ned Deily in branch 'default': Issue #18517: merge fro

[issue18517] "xxlimited" extension declared incorrectly in setup.py

2013-08-01 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue18517] "xxlimited" extension declared incorrectly in setup.py

2013-08-01 Thread Martin v . Löwis
Martin v. Löwis added the comment: I would be fine with it being build only in a debug build. The rationale for the module is that it should test whether the header files actually compile under the limited API (or whether e.g. some functions are exposed that rely on unexposed structures). So t

[issue18517] "xxlimited" extension declared incorrectly in setup.py

2013-07-21 Thread R. David Murray
R. David Murray added the comment: My expectation would be that we want the tests to be runnable (and be run, not skipped) with Python installed, and thus we build the test module. (Whether or not our tests actually *can* be run with Python installed is an open question, though.) And skippin

[issue18517] "xxlimited" extension declared incorrectly in setup.py

2013-07-21 Thread Ned Deily
Changes by Ned Deily : -- keywords: +patch Added file: http://bugs.python.org/file30993/issue_X_setup_xxlimited.patch ___ Python tracker ___ _

[issue18517] "xxlimited" extension declared incorrectly in setup.py

2013-07-21 Thread Ned Deily
New submission from Ned Deily: In the top-level setup.py, the code to define the Extension instance for the "xxlimited" extension is currently incorrectly located near the end of detect_tkinter() rather than in its parent detect_modules(). This has the effect of skipping the build of "xxlimite