diff options
author | Itamar Ostricher <itamarost@gmail.com> | 2023-05-03 07:20:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-03 07:20:00 (GMT) |
commit | 8d34031068ece75667260f6526d3165efe34e054 (patch) | |
tree | ada4a24cab4185b9a883427a7006d30d3049210b /Misc | |
parent | fdb3ef8c0f94c7e55870a585dc6499aca46f9f90 (diff) | |
download | cpython-8d34031068ece75667260f6526d3165efe34e054.zip cpython-8d34031068ece75667260f6526d3165efe34e054.tar.gz cpython-8d34031068ece75667260f6526d3165efe34e054.tar.bz2 |
gh-104078: Improve performance of PyObject_HasAttrString (#104079)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-05-01-21-05-47.gh-issue-104078.vRaBsU.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-05-01-21-05-47.gh-issue-104078.vRaBsU.rst b/Misc/NEWS.d/next/Core and Builtins/2023-05-01-21-05-47.gh-issue-104078.vRaBsU.rst new file mode 100644 index 0000000..6f24529 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2023-05-01-21-05-47.gh-issue-104078.vRaBsU.rst @@ -0,0 +1 @@ +Improve the performance of :c:func:`PyObject_HasAttrString` |