diff options
author | blhsing <blhsing@gmail.com> | 2024-06-29 06:32:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-29 06:32:42 (GMT) |
commit | 6d34938dc8163f4a4bcc68069a1645a7ab76e935 (patch) | |
tree | edfb0067fe8ef38fc9c1533a5aa12459eb885c31 /pyconfig.h.in | |
parent | 92893fd8dc803ed7cdde55d29d25f84ccb5e3ef0 (diff) | |
download | cpython-6d34938dc8163f4a4bcc68069a1645a7ab76e935.zip cpython-6d34938dc8163f4a4bcc68069a1645a7ab76e935.tar.gz cpython-6d34938dc8163f4a4bcc68069a1645a7ab76e935.tar.bz2 |
gh-120713: Normalize year with century for datetime.strftime (GH-120820)
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index c279b14..a90f936 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -1659,6 +1659,9 @@ SipHash13: 3, externally defined: 0 */ #undef Py_HASH_ALGORITHM +/* Define if year with century should be normalized for strftime. */ +#undef Py_NORMALIZE_CENTURY + /* Define if rl_startup_hook takes arguments */ #undef Py_RL_STARTUP_HOOK_TAKES_ARGS |