diff options
author | pxinwr <peixing.xin@windriver.com> | 2020-12-30 12:50:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-30 12:50:39 (GMT) |
commit | 277ce3060becc120f1c877346562bd6880f4be71 (patch) | |
tree | c0cf4a259865653e84f5d4a87ae2e27e7cb20dbc /Doc/whatsnew | |
parent | c56387f80c5aabf8100ceaffe365cc004ce0d7e0 (diff) | |
download | cpython-277ce3060becc120f1c877346562bd6880f4be71.zip cpython-277ce3060becc120f1c877346562bd6880f4be71.tar.gz cpython-277ce3060becc120f1c877346562bd6880f4be71.tar.bz2 |
bpo-27640: Add --disable-test-modules configure option (GH-23886)
Added --disable-test-modules option to the configure script:
don't build nor install test modules.
Patch by Xavier de Gaye, Thomas Petazzoni and Peixing Xin.
Co-Authored-By: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Co-Authored-By: Xavier de Gaye <xdegaye@gmail.com>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index b5fb1e9..db34b33 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -558,6 +558,10 @@ Build Changes * The :mod:`atexit` module must now always be built as a built-in module. (Contributed by Victor Stinner in :issue:`42639`.) +* Added ``--disable-test-modules`` option to the ``configure`` script: + don't build nor install test modules. + (Contributed by Xavier de Gaye, Thomas Petazzoni and Peixing Xin in :issue:`27640`.) + C API Changes ============= |