diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2022-01-26 15:46:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-26 15:46:48 (GMT) |
commit | ac0c6e128cb6553585af096c851c488b53a6c952 (patch) | |
tree | 28ada0f6fa8c6fcd40e3b863c57651c5462c9348 /Misc | |
parent | 1e8a3a5579c9a96a45073b24d1af2dbe3039d366 (diff) | |
download | cpython-ac0c6e128cb6553585af096c851c488b53a6c952.zip cpython-ac0c6e128cb6553585af096c851c488b53a6c952.tar.gz cpython-ac0c6e128cb6553585af096c851c488b53a6c952.tar.bz2 |
bpo-46527: allow calling enumerate(iterable=...) again (GH-30904)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-01-25-19-34-55.bpo-46527.mQLNPk.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-01-25-19-34-55.bpo-46527.mQLNPk.rst b/Misc/NEWS.d/next/Core and Builtins/2022-01-25-19-34-55.bpo-46527.mQLNPk.rst new file mode 100644 index 0000000..c9fd0ed --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-01-25-19-34-55.bpo-46527.mQLNPk.rst @@ -0,0 +1,2 @@ +Allow passing ``iterable`` as a keyword argument to :func:`enumerate` again. +Patch by Jelle Zijlstra. |