Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-39936: _aix_support uses _bootsubprocess (GH-18970) | Victor Stinner | 2020-03-12 | 1 | -35/+25 |
| | | | | | | | | AIX: Fix _aix_support module when the subprocess is not available, when building Python from scratch. It now uses new private _bootsubprocess module, rather than having two implementations depending if subprocess is available or not. So _aix_support.aix_platform() result is now the same if subprocess is available or not. | ||||
* | bpo-38021: Modify AIX platform_tag so it covers PEP 425 needs (GH-17303) | Michael Felt | 2019-12-16 | 1 | -0/+99 |
Provides a richer platform tag for AIX that we expect to be sufficient for PEP 425 binary distribution identification. Any backports to earlier Python versions will be handled via setuptools. Patch by Michael Felt. |