summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetr Viktorin <encukou@gmail.com>2020-12-08 16:36:53 (GMT)
committerGitHub <noreply@github.com>2020-12-08 16:36:53 (GMT)
commitc168b5078f88874b9acd993ac886f82269c780dd (patch)
treee4c2b04e56d9be570f7d7f33c4f8d1d0a180e6f9 /Misc
parent4aa67853cc7d6ed4f9ebb726ceaa2c89f9feabda (diff)
downloadcpython-c168b5078f88874b9acd993ac886f82269c780dd.zip
cpython-c168b5078f88874b9acd993ac886f82269c780dd.tar.gz
cpython-c168b5078f88874b9acd993ac886f82269c780dd.tar.bz2
bpo-42111: Make the xxlimited module an example of best extension module practices (GH-23226)
- Copy existing xxlimited to xxlimited53 (named for the limited API version it uses) - Build both modules, both in debug and release - Test both modules
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2020-10-21-18-43-06.bpo-42111.9pvtrc.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2020-10-21-18-43-06.bpo-42111.9pvtrc.rst b/Misc/NEWS.d/next/C API/2020-10-21-18-43-06.bpo-42111.9pvtrc.rst
new file mode 100644
index 0000000..3fb718c
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2020-10-21-18-43-06.bpo-42111.9pvtrc.rst
@@ -0,0 +1,2 @@
+Update the ``xxlimited`` module to be a better example of how to use the
+limited C API.