summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2020-03-22 16:17:34 (GMT)
committerGitHub <noreply@github.com>2020-03-22 16:17:34 (GMT)
commit05e4a296ecc127641160a04f39cc02c0f66a8c27 (patch)
tree59e73090785087a5e15175c815a20986e59a5728 /Misc
parentb33e52511a59c6da7132c226b7f7489b092a33eb (diff)
downloadcpython-05e4a296ecc127641160a04f39cc02c0f66a8c27.zip
cpython-05e4a296ecc127641160a04f39cc02c0f66a8c27.tar.gz
cpython-05e4a296ecc127641160a04f39cc02c0f66a8c27.tar.bz2
bpo-40024: Add PyModule_AddType() helper function (GH-19088)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2020-03-20-18-41-33.bpo-40024.9zHpve.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2020-03-20-18-41-33.bpo-40024.9zHpve.rst b/Misc/NEWS.d/next/C API/2020-03-20-18-41-33.bpo-40024.9zHpve.rst
new file mode 100644
index 0000000..a0b33dd
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2020-03-20-18-41-33.bpo-40024.9zHpve.rst
@@ -0,0 +1 @@
+Add :c:func:`PyModule_AddType` helper function: add a type to a module. Patch by Dong-hee Na.