diff options
author | Inada Naoki <songofacandy@gmail.com> | 2019-04-12 07:11:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-12 07:11:28 (GMT) |
commit | 9e4f2f3a6b8ee995c365e86d976937c141d867f8 (patch) | |
tree | ecb726d5c086b3ad138f7570529480f0b86eed1c /Misc | |
parent | 3993ccb6820d4239ce3d9e1c5d31f13b86e0000b (diff) | |
download | cpython-9e4f2f3a6b8ee995c365e86d976937c141d867f8.zip cpython-9e4f2f3a6b8ee995c365e86d976937c141d867f8.tar.gz cpython-9e4f2f3a6b8ee995c365e86d976937c141d867f8.tar.bz2 |
bpo-20180: Use argument clinic for dict.pop() and dict.popitem() (GH-12792)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-04-12-15-49-15.bpo-20180.KUqVk7.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-04-12-15-49-15.bpo-20180.KUqVk7.rst b/Misc/NEWS.d/next/Core and Builtins/2019-04-12-15-49-15.bpo-20180.KUqVk7.rst new file mode 100644 index 0000000..8c90670 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-04-12-15-49-15.bpo-20180.KUqVk7.rst @@ -0,0 +1,2 @@ +``dict.pop()`` is now up to 33% faster thanks to Argument Clinic. Patch by +Inada Naoki. |