summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2020-05-05 21:58:19 (GMT)
committerGitHub <noreply@github.com>2020-05-05 21:58:19 (GMT)
commit96074de573f82fc66a2bd73c36905141a3f1d5c1 (patch)
tree7c0c6375b21b16ed77e6a3010a96fd9fbf43c4eb /Misc
parent1253c3ef70ea5632d32ae19579a14152db0d45c1 (diff)
downloadcpython-96074de573f82fc66a2bd73c36905141a3f1d5c1.zip
cpython-96074de573f82fc66a2bd73c36905141a3f1d5c1.tar.gz
cpython-96074de573f82fc66a2bd73c36905141a3f1d5c1.tar.bz2
bpo-40523: Add pass-throughs for hash() and reversed() to weakref.proxy objects (GH-19946)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-05-05-20-36-15.bpo-40523.hKZVTB.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-05-05-20-36-15.bpo-40523.hKZVTB.rst b/Misc/NEWS.d/next/Core and Builtins/2020-05-05-20-36-15.bpo-40523.hKZVTB.rst
new file mode 100644
index 0000000..14f05be
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-05-05-20-36-15.bpo-40523.hKZVTB.rst
@@ -0,0 +1,2 @@
+Add pass-throughs for :func:`hash` and :func:`reversed` to
+:class:`weakref.proxy` objects. Patch by Pablo Galindo.