summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTal Einat <taleinat+github@gmail.com>2018-09-06 11:34:25 (GMT)
committerGitHub <noreply@github.com>2018-09-06 11:34:25 (GMT)
commit3e2b29dccc3ca9fbc418bfa312ad655782e250f2 (patch)
tree7904f4dbfdcea2321bdf6862f3a118b6f7ea75d6 /Misc
parent874809ea389e6434787e773a6054a08e0b81f734 (diff)
downloadcpython-3e2b29dccc3ca9fbc418bfa312ad655782e250f2.zip
cpython-3e2b29dccc3ca9fbc418bfa312ad655782e250f2.tar.gz
cpython-3e2b29dccc3ca9fbc418bfa312ad655782e250f2.tar.bz2
bpo-30977: make uuid.UUID use __slots__ (GH-9078)
Co-Authored-By: Wouter Bolsterlee.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-09-06-10-07-46.bpo-30977.bP661V.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-09-06-10-07-46.bpo-30977.bP661V.rst b/Misc/NEWS.d/next/Library/2018-09-06-10-07-46.bpo-30977.bP661V.rst
new file mode 100644
index 0000000..3d547c0
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-09-06-10-07-46.bpo-30977.bP661V.rst
@@ -0,0 +1,2 @@
+Make uuid.UUID use ``__slots__`` to reduce its memory footprint. Based on
+original patch by Wouter Bolsterlee.