summaryrefslogtreecommitdiff
path: root/test cases/python/5 modules kwarg
AgeCommit message (Collapse)Author
2024-02-19Fix KeyError in Python moduleCharles Brunet
0e7fb07 introduced a subtile bug in the Python module. If a python version is found, but is missing a required module, it is added to the list of python installations, but the `run_bytecompile` attribute for that version was not initialized. Therefore, if any other python version added something to install, it was raising a KeyError when trying to read the `run_bytecompile` attribute for the python version with missing module.
2023-10-02tests: fix test case to not import distutils on python 3.12Eli Schwartz
Testing the correctness of the `modules: ` kwarg can be done with other guaranteed stdlib modules that are even more guaranteed since they didn't get deprecated for removal.
2020-07-12setuptools is not stdlib, but distutils isMichael Hirsch
2019-06-12modules/python: add a modules keyword argumentDylan Baker
This mirrors the modules keyword argument that some dependencies (such as qt and llvm) take. This allows an easier method to determine if modules are installed.