summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMichael Felt <aixtools@users.noreply.github.com>2020-02-07 17:56:16 (GMT)
committerGitHub <noreply@github.com>2020-02-07 17:56:16 (GMT)
commitde6f38db4859f7b8fe4da4556f06c52675fff24a (patch)
tree027c9faf91b3cf18cdc87adab7a4a7ae5f9907e2 /Misc
parentb10dc3e7a11fcdb97e285882eba6da92594f90f9 (diff)
downloadcpython-de6f38db4859f7b8fe4da4556f06c52675fff24a.zip
cpython-de6f38db4859f7b8fe4da4556f06c52675fff24a.tar.gz
cpython-de6f38db4859f7b8fe4da4556f06c52675fff24a.tar.bz2
bpo-39502: Fix 64-bit Python PyTime_localtime() on AIX (GH-18285)
Fix time.localtime() on 64-bit AIX to support years before 1902 and after 2038.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-01-30-14-36-31.bpo-39502.IJu0rl.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-01-30-14-36-31.bpo-39502.IJu0rl.rst b/Misc/NEWS.d/next/Core and Builtins/2020-01-30-14-36-31.bpo-39502.IJu0rl.rst
new file mode 100644
index 0000000..93b3639
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-01-30-14-36-31.bpo-39502.IJu0rl.rst
@@ -0,0 +1,2 @@
+Fix :func:`time.localtime` on 64-bit AIX to support years before 1902 and after 2038.
+Patch by M Felt.