summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-08-29 07:56:04 (GMT)
committerGitHub <noreply@github.com>2019-08-29 07:56:04 (GMT)
commitd1d42bf4a404f092fe90fe8984481c507a64ef0a (patch)
tree4adcdf640487835b27586837e555b47e3ea646fb /Misc/NEWS.d
parent097eae5b9b4801d34bb900c01b5e6a80f028bc12 (diff)
downloadcpython-d1d42bf4a404f092fe90fe8984481c507a64ef0a.zip
cpython-d1d42bf4a404f092fe90fe8984481c507a64ef0a.tar.gz
cpython-d1d42bf4a404f092fe90fe8984481c507a64ef0a.tar.bz2
bpo-37372: Fix error unpickling datetime.time objects from Python 2 with seconds>=24. (GH-14307)
(cherry picked from commit 122376df550b71dd3bec0513c7483cc1714212fa) Co-authored-by: Justin Blanchard <UncombedCoconut@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2019-06-22-12-30-00.bpo-37372.kIKqZ6.rst2
1 files changed, 2 insertions, 0 deletions
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.