summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrandt Bucher <brandt@python.org>2021-05-02 22:35:00 (GMT)
committerGitHub <noreply@github.com>2021-05-02 22:35:00 (GMT)
commit9387fac100db359cbb6ec2a76f8a5eba8f9d7b65 (patch)
tree50b2d7b1a39f296a6bd57733e087a5dde3622787 /Misc
parentcbb7b9ed4a6069a2cb2e2f809926c2cfa332a493 (diff)
downloadcpython-9387fac100db359cbb6ec2a76f8a5eba8f9d7b65.zip
cpython-9387fac100db359cbb6ec2a76f8a5eba8f9d7b65.tar.gz
cpython-9387fac100db359cbb6ec2a76f8a5eba8f9d7b65.tar.bz2
bpo-43977: Document the new pattern matching type flags (GH-25734)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Documentation/2021-04-29-15-06-03.bpo-43977.K5aSl1.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2021-04-29-15-06-03.bpo-43977.K5aSl1.rst b/Misc/NEWS.d/next/Documentation/2021-04-29-15-06-03.bpo-43977.K5aSl1.rst
new file mode 100644
index 0000000..20b5fd7
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2021-04-29-15-06-03.bpo-43977.K5aSl1.rst
@@ -0,0 +1,2 @@
+Document the new :const:`Py_TPFLAGS_MAPPING` and
+:const:`Py_TPFLAGS_SEQUENCE` type flags.