mirror of https://github.com/python/cpython
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.
This commit is contained in:
parent
b10dc3e7a1
commit
de6f38db48
|
@ -0,0 +1,2 @@
|
|||
Fix :func:`time.localtime` on 64-bit AIX to support years before 1902 and after 2038.
|
||||
Patch by M Felt.
|
|
@ -1059,7 +1059,7 @@ _PyTime_localtime(time_t t, struct tm *tm)
|
|||
return 0;
|
||||
#else /* !MS_WINDOWS */
|
||||
|
||||
#ifdef _AIX
|
||||
#if defined(_AIX) && (SIZEOF_TIME_T < 8)
|
||||
/* bpo-34373: AIX does not return NULL if t is too small or too large */
|
||||
if (t < -2145916800 /* 1902-01-01 */
|
||||
|| t > 2145916800 /* 2038-01-01 */) {
|
||||
|
|
Loading…
Reference in New Issue