diff options
author | Kevin Adler <kadler@us.ibm.com> | 2020-10-16 18:03:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-16 18:03:28 (GMT) |
commit | 1dd6d956a3ddf2cf6d4a69241dba8cd1379421b9 (patch) | |
tree | f4be10c0a88e8e72c44427da06defbe464897364 /Misc/NEWS.d/next | |
parent | e9959c71185d0850c84e3aba0301fbc238f194a9 (diff) | |
download | cpython-1dd6d956a3ddf2cf6d4a69241dba8cd1379421b9.zip cpython-1dd6d956a3ddf2cf6d4a69241dba8cd1379421b9.tar.gz cpython-1dd6d956a3ddf2cf6d4a69241dba8cd1379421b9.tar.bz2 |
closes bpo-42030: Remove legacy AIX dynload support (GH-22717)
Since c19c5a6, AIX builds have defaulted to using dynload_shlib over
dynload_aix when dlopen is available. This function has been available
since AIX 4.3, which went out of support in 2003, the same year the
previously referenced commit was made. It has been nearly 20 years
since a version of AIX has been supported which has not used
dynload_shlib so there's no reason to keep this legacy code around.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-10-15-21-55-32.bpo-42030.PmU2CA.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-10-15-21-55-32.bpo-42030.PmU2CA.rst b/Misc/NEWS.d/next/Core and Builtins/2020-10-15-21-55-32.bpo-42030.PmU2CA.rst new file mode 100644 index 0000000..e8c691d --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-10-15-21-55-32.bpo-42030.PmU2CA.rst @@ -0,0 +1,3 @@ +Support for the legacy AIX-specific shared library loading support has been +removed. All versions of AIX since 4.3 have supported and defaulted to using +the common Unix mechanism instead. |