diff options
author | James Hilton-Balfe <gobot1234yt@gmail.com> | 2023-09-29 16:57:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-29 16:57:32 (GMT) |
commit | 7d57288f6d0e7fffb2002ceb460784d39277584a (patch) | |
tree | 8cf549c3aeff0d78eef1f76fba705eb205609c32 /Misc | |
parent | 20bc5f7c28a6f8a2e156c4a748ffabb5efc7c761 (diff) | |
download | cpython-7d57288f6d0e7fffb2002ceb460784d39277584a.zip cpython-7d57288f6d0e7fffb2002ceb460784d39277584a.tar.gz cpython-7d57288f6d0e7fffb2002ceb460784d39277584a.tar.bz2 |
gh-109495: Remove unused slots from the Python implementation of datetime (GH-109494)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-09-16-15-44-16.gh-issue-109495.m2H5Bk.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-09-16-15-44-16.gh-issue-109495.m2H5Bk.rst b/Misc/NEWS.d/next/Library/2023-09-16-15-44-16.gh-issue-109495.m2H5Bk.rst new file mode 100644 index 0000000..a7e1b3a --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-09-16-15-44-16.gh-issue-109495.m2H5Bk.rst @@ -0,0 +1 @@ +Remove unnecessary extra ``__slots__`` in :py:class:`datetime`\'s pure python implementation to reduce memory size, as they are defined in the superclass. Patch by James Hilton-Balfe |