summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlex Waygood <Alex.Waygood@Gmail.com>2023-09-23 18:31:17 (GMT)
committerGitHub <noreply@github.com>2023-09-23 18:31:17 (GMT)
commit51863b7d6ea183167da09fc6b3f2745a1aaa4ef5 (patch)
tree99bbe140f111e56ab3fe9c6113c6ff6717bf171d /Misc
parente8be0c9c5a7c2327b3dd64009f45ee0682322dcb (diff)
downloadcpython-51863b7d6ea183167da09fc6b3f2745a1aaa4ef5.zip
cpython-51863b7d6ea183167da09fc6b3f2745a1aaa4ef5.tar.gz
cpython-51863b7d6ea183167da09fc6b3f2745a1aaa4ef5.tar.bz2
gh-109653: Improve `enum` import time by avoiding import of `functools` (GH-109789)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-09-23-12-47-45.gh-issue-109653.9wZBfs.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-09-23-12-47-45.gh-issue-109653.9wZBfs.rst b/Misc/NEWS.d/next/Library/2023-09-23-12-47-45.gh-issue-109653.9wZBfs.rst
new file mode 100644
index 0000000..1d0f0e4
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-09-23-12-47-45.gh-issue-109653.9wZBfs.rst
@@ -0,0 +1 @@
+Reduce the import time of :mod:`enum` by over 50%. Patch by Alex Waygood.