summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2021-04-11 03:00:05 (GMT)
committerGitHub <noreply@github.com>2021-04-11 03:00:05 (GMT)
commit9045919bfa820379a66ea67219f79ef6d9ecab49 (patch)
tree7762f15b2d875b36ffc84a2e98ff761e6267cd6d /Misc
parent522433601a5c64603dab3d733f41a5db39d237eb (diff)
downloadcpython-9045919bfa820379a66ea67219f79ef6d9ecab49.zip
cpython-9045919bfa820379a66ea67219f79ef6d9ecab49.tar.gz
cpython-9045919bfa820379a66ea67219f79ef6d9ecab49.tar.bz2
bpo-43772: Fix TypeVar.__ror__ (GH-25339)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-04-10-19-14-49.bpo-43772.Bxq0zQ.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-04-10-19-14-49.bpo-43772.Bxq0zQ.rst b/Misc/NEWS.d/next/Library/2021-04-10-19-14-49.bpo-43772.Bxq0zQ.rst
new file mode 100644
index 0000000..648357b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-04-10-19-14-49.bpo-43772.Bxq0zQ.rst
@@ -0,0 +1 @@
+Fixed the return value of ``TypeVar.__ror__``. Patch by Jelle Zijlstra.