diff options
author | Oren Milman <orenmn@gmail.com> | 2017-10-08 08:17:46 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-10-08 08:17:46 (GMT) |
commit | 0ccc0f6c7495be9043300e22d8f38e6d65e8884f (patch) | |
tree | 0e93d02086fb4997860e82ca68969a5cfbe24a2f /Misc | |
parent | f07e2b64df6304a36fb5e29397d3c77a7ba17704 (diff) | |
download | cpython-0ccc0f6c7495be9043300e22d8f38e6d65e8884f.zip cpython-0ccc0f6c7495be9043300e22d8f38e6d65e8884f.tar.gz cpython-0ccc0f6c7495be9043300e22d8f38e6d65e8884f.tar.bz2 |
bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() always return a list (#3840)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/C API/2017-09-30-19-41-44.bpo-28280.K_EjpO.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2017-09-30-19-41-44.bpo-28280.K_EjpO.rst b/Misc/NEWS.d/next/C API/2017-09-30-19-41-44.bpo-28280.K_EjpO.rst new file mode 100644 index 0000000..76990f7 --- /dev/null +++ b/Misc/NEWS.d/next/C API/2017-09-30-19-41-44.bpo-28280.K_EjpO.rst @@ -0,0 +1,2 @@ +Make `PyMapping_Keys()`, `PyMapping_Values()` and `PyMapping_Items()` always +return a `list` (rather than a `list` or a `tuple`). Patch by Oren Milman. |