summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>2020-10-18 15:33:28 (GMT)
committerGitHub <noreply@github.com>2020-10-18 15:33:28 (GMT)
commit1040299e9283609f3de0f6e32a0d43458fe7f4f6 (patch)
treec9359db9f223ea463e96bdce45fb52bf895dbb4c /Misc/NEWS.d
parent400175ad91c1aa8abc6dfce108446e4210d0c157 (diff)
downloadcpython-1040299e9283609f3de0f6e32a0d43458fe7f4f6.zip
cpython-1040299e9283609f3de0f6e32a0d43458fe7f4f6.tar.gz
cpython-1040299e9283609f3de0f6e32a0d43458fe7f4f6.tar.bz2
bpo-41966: Fix pickling pure datetime.time subclasses (GH-22731) (GH-22748)
(cherry picked from commit c304c9a7efa8751b5bc7526fa95cd5f30aac2b92) Co-authored-by: scaramallion <scaramallion@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2020-10-17-07-52-53.bpo-41966.gwEQRZ.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-10-17-07-52-53.bpo-41966.gwEQRZ.rst b/Misc/NEWS.d/next/Library/2020-10-17-07-52-53.bpo-41966.gwEQRZ.rst
new file mode 100644
index 0000000..0e7fad4
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-10-17-07-52-53.bpo-41966.gwEQRZ.rst
@@ -0,0 +1,2 @@
+Fix pickling pure Python :class:`datetime.time` subclasses. Patch by Dean
+Inwood.