diff options
author | Justin Blanchard <UncombedCoconut@gmail.com> | 2019-08-29 07:36:15 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2019-08-29 07:36:15 (GMT) |
commit | 122376df550b71dd3bec0513c7483cc1714212fa (patch) | |
tree | 5f52d8443c43ab36004a25a3e8c957b9df7c218d /Misc | |
parent | e64f948e762a6b9fd02e2902ccf42438df6fcb61 (diff) | |
download | cpython-122376df550b71dd3bec0513c7483cc1714212fa.zip cpython-122376df550b71dd3bec0513c7483cc1714212fa.tar.gz cpython-122376df550b71dd3bec0513c7483cc1714212fa.tar.bz2 |
bpo-37372: Fix error unpickling datetime.time objects from Python 2 with seconds>=24. (GH-14307)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-06-22-12-30-00.bpo-37372.kIKqZ6.rst | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -162,6 +162,7 @@ Roy Bixler Daniel Black Jonathan Black Renaud Blanch +Justin Blanchard Mike Bland Martin Bless Pablo Bleyer diff --git a/Misc/NEWS.d/next/Library/2019-06-22-12-30-00.bpo-37372.kIKqZ6.rst b/Misc/NEWS.d/next/Library/2019-06-22-12-30-00.bpo-37372.kIKqZ6.rst new file mode 100644 index 0000000..b958d8f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-06-22-12-30-00.bpo-37372.kIKqZ6.rst @@ -0,0 +1,2 @@ +Fix error unpickling datetime.time objects from Python 2 with seconds>=24. +Patch by Justin Blanchard. |