diff options
author | scaramallion <scaramallion@users.noreply.github.com> | 2020-10-18 14:49:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-18 14:49:48 (GMT) |
commit | c304c9a7efa8751b5bc7526fa95cd5f30aac2b92 (patch) | |
tree | 0a255fff66b458eb49c0357d36298c59e7fbf0f6 /Misc | |
parent | a0c603cb9d4dbb9909979313a88bcd1f5fde4f62 (diff) | |
download | cpython-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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-10-17-07-52-53.bpo-41966.gwEQRZ.rst | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -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. |