diff options
author | Kevin Adler <kadler@us.ibm.com> | 2020-11-16 15:16:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-16 15:16:10 (GMT) |
commit | c79667ff7921444911e8a5dfa5fba89294915590 (patch) | |
tree | 507ad56a5b4cb66d08c7aeb9c20c7389d250bf9b /Modules/_localemodule.c | |
parent | ae6cd7cfdab0599139002c526953d907696d9eef (diff) | |
download | cpython-c79667ff7921444911e8a5dfa5fba89294915590.zip cpython-c79667ff7921444911e8a5dfa5fba89294915590.tar.gz cpython-c79667ff7921444911e8a5dfa5fba89294915590.tar.bz2 |
bpo-42087: Remove support for AIX 5.3 and below (GH-22830)
As AIX 5.3 and below do not support thread_cputime, it was decided in
https://bugs.python.org/issue40680 to require AIX 6.1 and above. This
commit removes workarounds for — and references to — older, unsupported
AIX versions.
Diffstat (limited to 'Modules/_localemodule.c')
-rw-r--r-- | Modules/_localemodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c index 7b3597e..869e3f8 100644 --- a/Modules/_localemodule.c +++ b/Modules/_localemodule.c @@ -556,7 +556,6 @@ static struct langinfo_constant{ LANGINFO(PM_STR), /* The following constants are available only with XPG4, but... - AIX 3.2. only has CODESET. OpenBSD doesn't have CODESET but has T_FMT_AMPM, and doesn't have a few of the others. Solution: ifdef-test them all. */ |