summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-06-28 09:54:58 (GMT)
committerGitHub <noreply@github.com>2022-06-28 09:54:58 (GMT)
commitefdc9d68de84410b468c2dc87b371b4c3d0663ac (patch)
tree6b2e816555b591cdbc21070fb75283d26b40d25f /Misc
parent71d5299b73c854a7b0e12eb5d0a524579723660b (diff)
downloadcpython-efdc9d68de84410b468c2dc87b371b4c3d0663ac.zip
cpython-efdc9d68de84410b468c2dc87b371b4c3d0663ac.tar.gz
cpython-efdc9d68de84410b468c2dc87b371b4c3d0663ac.tar.bz2
gh-87995: Make MappingProxyType hashable (GH-94252)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-06-25-10-19-43.gh-issue-87995.aMDHnp.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-06-25-10-19-43.gh-issue-87995.aMDHnp.rst b/Misc/NEWS.d/next/Core and Builtins/2022-06-25-10-19-43.gh-issue-87995.aMDHnp.rst
new file mode 100644
index 0000000..4154ebc
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-06-25-10-19-43.gh-issue-87995.aMDHnp.rst
@@ -0,0 +1,2 @@
+:class:`types.MappingProxyType` instances are now hashable if the underlying
+mapping is hashable.