summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorItamar Ostricher <itamarost@gmail.com>2023-05-04 14:50:26 (GMT)
committerGitHub <noreply@github.com>2023-05-04 14:50:26 (GMT)
commitfdcb49c36b2ed8347d8d9f2dcd7052cc90207beb (patch)
treeeacef8a2b7d8ee2aeb46efff8750315f2263fb16 /Misc
parentc9ecd3ee75b472bb0a7538e0288c5cfea146da83 (diff)
downloadcpython-fdcb49c36b2ed8347d8d9f2dcd7052cc90207beb.zip
cpython-fdcb49c36b2ed8347d8d9f2dcd7052cc90207beb.tar.gz
cpython-fdcb49c36b2ed8347d8d9f2dcd7052cc90207beb.tar.bz2
gh-104066: Improve performance of hasattr for module objects (#104063)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-05-01-14-48-29.gh-issue-104066.pzoUZQ.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-05-01-14-48-29.gh-issue-104066.pzoUZQ.rst b/Misc/NEWS.d/next/Core and Builtins/2023-05-01-14-48-29.gh-issue-104066.pzoUZQ.rst
new file mode 100644
index 0000000..97e0c01
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-05-01-14-48-29.gh-issue-104066.pzoUZQ.rst
@@ -0,0 +1,2 @@
+Improve the performance of :func:`hasattr` for module objects with a missing
+attribute.