diff options
author | Michael Felt <aixtools@users.noreply.github.com> | 2021-05-04 08:36:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-04 08:36:50 (GMT) |
commit | 5017cde20ed1d163a55d95b34ca452d83771a581 (patch) | |
tree | 9a95a9c045a28a84d6eed694c385fc49fbdd2d8c /Misc | |
parent | d4222ea6b0bb3cf7d40f23b370dc9eea5f9b7004 (diff) | |
download | cpython-5017cde20ed1d163a55d95b34ca452d83771a581.zip cpython-5017cde20ed1d163a55d95b34ca452d83771a581.tar.gz cpython-5017cde20ed1d163a55d95b34ca452d83771a581.tar.bz2 |
bpo-43666: Lib/_aix_support.py routines may fail in a WPAR environment (GH-25095)
Since WPAR and LPAR both have a builddate for teh fileset bos.rte
The name of the fileset checked is modified.
To prevent a similiar situation (no builddate in ODM) a value
sufficient for pep425 activity if retrieved buildate is zero or NULL
Patch by M Felt.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-03-30-08-39-08.bpo-43666.m72tlH.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-03-30-08-39-08.bpo-43666.m72tlH.rst b/Misc/NEWS.d/next/Library/2021-03-30-08-39-08.bpo-43666.m72tlH.rst new file mode 100644 index 0000000..6a34321 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-03-30-08-39-08.bpo-43666.m72tlH.rst @@ -0,0 +1,6 @@ +AIX: `Lib/_aix_support.get_platform()` may fail in an AIX WPAR. +The fileset bos.rte appears to have a builddate in both LPAR and WPAR +so this fileset is queried rather than bos.mp64. +To prevent a similiar situation (no builddate in ODM) a value (9988) +sufficient for completing a build is provided. +Patch by M Felt. |