[issue27640] add the '--disable-test-suite' option to configure

2020-12-30 Thread STINNER Victor
STINNER Victor added the comment: Thanks all, it's now fixed in the master branch, the future Python 3.10. Thanks Xavier de Gaye for the initial patch and reported the issue. Thanks Peixing Xin for the final change which is now even better! Thanks also Thomas Petazzoni who maintained the

[issue27640] add the '--disable-test-suite' option to configure

2020-12-30 Thread STINNER Victor
STINNER Victor added the comment: New changeset 277ce3060becc120f1c877346562bd6880f4be71 by pxinwr in branch 'master': bpo-27640: Add --disable-test-modules configure option (GH-23886) https://github.com/python/cpython/commit/277ce3060becc120f1c877346562bd6880f4be71 --

[issue27640] add the '--disable-test-suite' option to configure

2020-12-29 Thread STINNER Victor
STINNER Victor added the comment: pr23886_files.diff: see https://github.com/python/cpython/pull/23886#issuecomment-752279731 -- ___ Python tracker ___

[issue27640] add the '--disable-test-suite' option to configure

2020-12-29 Thread STINNER Victor
Change by STINNER Victor : Added file: https://bugs.python.org/file49707/pr23886_files.diff ___ Python tracker ___ ___ Python-bugs-list

[issue27640] add the '--disable-test-suite' option to configure

2020-12-28 Thread Peixing Xin
Change by Peixing Xin : -- nosy: +pxinwr nosy_count: 6.0 -> 7.0 pull_requests: +22820 pull_request: https://github.com/python/cpython/pull/23886 ___ Python tracker ___

[issue27640] add the '--disable-test-suite' option to configure

2019-12-10 Thread Xavier de Gaye
Change by Xavier de Gaye : -- nosy: -xdegaye ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27640] add the '--disable-test-suite' option to configure

2019-03-01 Thread STINNER Victor
STINNER Victor added the comment: I modified setup.py to add a new TEST_EXTENSIONS which allows to not build test extensions: New changeset cfe172dc6bd0a02d36db31ffabcc38f9320a4510 by Victor Stinner in branch 'master': bpo-36146: Add TEST_EXTENSIONS to setup.py (GH-12129)

[issue27640] add the '--disable-test-suite' option to configure

2019-02-27 Thread Chih-Hsuan Yen
Change by Chih-Hsuan Yen : -- nosy: -yan12125 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27640] add the '--disable-test-suite' option to configure

2017-10-21 Thread Xavier de Gaye
Xavier de Gaye added the comment: > Ah, the discussion restarted on the other issue: > http://bugs.python.org/issue20210#msg287516 Issue 20210 has ended up as a change in the build system eventually and not the installation process, only a tiny step towards the

[issue27640] add the '--disable-test-suite' option to configure

2017-07-17 Thread Ed Morley
Changes by Ed Morley : -- nosy: +edmorley ___ Python tracker ___ ___ Python-bugs-list

[issue27640] add the '--disable-test-suite' option to configure

2017-02-10 Thread STINNER Victor
STINNER Victor added the comment: > But I would prefer to see a public discussion on python-dev before going into > this direction. Ah, the discussion restarted on the other issue: http://bugs.python.org/issue20210#msg287516 -- ___ Python tracker

[issue27640] add the '--disable-test-suite' option to configure

2017-02-10 Thread Chi Hsuan Yen
Changes by Chi Hsuan Yen : -- nosy: +Chi Hsuan Yen ___ Python tracker ___ ___

[issue27640] add the '--disable-test-suite' option to configure

2017-02-10 Thread STINNER Victor
STINNER Victor added the comment: I'm in favor of allowing to build a "subset" of Python. Not only it makes sense for embedded devices, but in many cases it's even not possible to do otherwise: "full" Python is too big for small devices. But I would prefer to see a public discussion on

[issue27640] add the '--disable-test-suite' option to configure

2017-02-03 Thread Xavier de Gaye
Changes by Xavier de Gaye : -- assignee: xdegaye -> ___ Python tracker ___ ___

[issue27640] add the '--disable-test-suite' option to configure

2016-07-29 Thread Xavier de Gaye
Xavier de Gaye added the comment: Thanks for the review Martin. I will update the patch accordingly later. -- ___ Python tracker ___

[issue27640] add the '--disable-test-suite' option to configure

2016-07-28 Thread Thomas Petazzoni
Thomas Petazzoni added the comment: We have a similar patch in Buildroot (see https://git.buildroot.org/buildroot/tree/package/python3/0017-Add-an-option-to-disable-installation-of-test-module.patch) so we would be very happy to see this patch merged. Note that we also have many more patches

[issue27640] add the '--disable-test-suite' option to configure

2016-07-28 Thread Xavier de Gaye
Changes by Xavier de Gaye : -- nosy: +haypo, thomas-petazzoni ___ Python tracker ___ ___

[issue27640] add the '--disable-test-suite' option to configure

2016-07-28 Thread Xavier de Gaye
Changes by Xavier de Gaye : -- components: +Cross-Build nosy: +Alex.Willmer ___ Python tracker ___

[issue27640] add the '--disable-test-suite' option to configure

2016-07-28 Thread Xavier de Gaye
Changes by Xavier de Gaye : Added file: http://bugs.python.org/file43918/listdirs.py ___ Python tracker ___

[issue27640] add the '--disable-test-suite' option to configure

2016-07-28 Thread Xavier de Gaye
New submission from Xavier de Gaye: Do not install the Python test suite when configure is run with '--disable-test-suite'. This about divides by two the size of the installed standard library. Related to issue 26852: add the '--enable-legacy-pyc-files' option to configure. The attached