summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2022-01-05 12:25:54 (GMT)
committerGitHub <noreply@github.com>2022-01-05 12:25:54 (GMT)
commit46e4c257e7c26c813620232135781e6c53fe8d4d (patch)
tree582c3702756fe8314ef514dbf4c7327f46630ce8 /Misc/NEWS.d
parentdd50316e458d7c3284f8948b0606d8aa91ab855d (diff)
downloadcpython-46e4c257e7c26c813620232135781e6c53fe8d4d.zip
cpython-46e4c257e7c26c813620232135781e6c53fe8d4d.tar.gz
cpython-46e4c257e7c26c813620232135781e6c53fe8d4d.tar.bz2
bpo-46236: Fix PyFunction_GetAnnotations() returned tuple. (GH-30409)
Automerge-Triggered-By: GH:pablogsal
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/C API/2022-01-05-10-16-16.bpo-46236.pcmVQw.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2022-01-05-10-16-16.bpo-46236.pcmVQw.rst b/Misc/NEWS.d/next/C API/2022-01-05-10-16-16.bpo-46236.pcmVQw.rst
new file mode 100644
index 0000000..6190658
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2022-01-05-10-16-16.bpo-46236.pcmVQw.rst
@@ -0,0 +1 @@
+Fix a bug in :c:func:`PyFunction_GetAnnotations` that caused it to return a ``tuple`` instead of a ``dict``.