summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorscaramallion <scaramallion@users.noreply.github.com>2020-10-18 14:49:48 (GMT)
committerGitHub <noreply@github.com>2020-10-18 14:49:48 (GMT)
commitc304c9a7efa8751b5bc7526fa95cd5f30aac2b92 (patch)
tree0a255fff66b458eb49c0357d36298c59e7fbf0f6 /Misc
parenta0c603cb9d4dbb9909979313a88bcd1f5fde4f62 (diff)
downloadcpython-c304c9a7efa8751b5bc7526fa95cd5f30aac2b92.zip
cpython-c304c9a7efa8751b5bc7526fa95cd5f30aac2b92.tar.gz
cpython-c304c9a7efa8751b5bc7526fa95cd5f30aac2b92.tar.bz2
bpo-41966: Fix pickling pure datetime.time subclasses (GH-22731)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2020-10-17-07-52-53.bpo-41966.gwEQRZ.rst2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 7f4a9bc..d81d0a2 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -787,6 +787,7 @@ Meador Inge
Peter Ingebretson
Tony Ingraldi
John Interrante
+Dean Inwood
Bob Ippolito
Roger Irwin
Atsuo Ishimoto
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.