summaryrefslogtreecommitdiffstats
path: root/Doc/library/mmap.rst
diff options
context:
space:
mode:
authorYeojin Kim <yeojin.k@linecorp.com>2023-02-24 10:26:51 (GMT)
committerGitHub <noreply@github.com>2023-02-24 10:26:51 (GMT)
commit347f7406df62b2bbe551685d72a466f27b951f8e (patch)
tree69a735ad9a2b75e54cabf3a02f9ca251d67c7213 /Doc/library/mmap.rst
parent9f3ecd1aa3566947648a053bd9716ed67dd9a718 (diff)
downloadcpython-347f7406df62b2bbe551685d72a466f27b951f8e.zip
cpython-347f7406df62b2bbe551685d72a466f27b951f8e.tar.gz
cpython-347f7406df62b2bbe551685d72a466f27b951f8e.tar.bz2
gh-81652: Add MAP_ALIGNED_SUPER FreeBSD and MAP_CONCEAL OpenBSD constants (gh-102191)
Diffstat (limited to 'Doc/library/mmap.rst')
-rw-r--r--Doc/library/mmap.rst14
1 files changed, 11 insertions, 3 deletions
diff --git a/Doc/library/mmap.rst b/Doc/library/mmap.rst
index c4f8781..69afadf 100644
--- a/Doc/library/mmap.rst
+++ b/Doc/library/mmap.rst
@@ -370,11 +370,19 @@ MAP_* Constants
MAP_ANONYMOUS
MAP_POPULATE
MAP_STACK
+ MAP_ALIGNED_SUPER
+ MAP_CONCEAL
- These are the various flags that can be passed to :meth:`mmap.mmap`. Note that some options might not be present on some systems.
+ These are the various flags that can be passed to :meth:`mmap.mmap`. :data:`MAP_ALIGNED_SUPER`
+ is only available at FreeBSD and :data:`MAP_CONCEAL` is only available at OpenBSD. Note
+ that some options might not be present on some systems.
.. versionchanged:: 3.10
- Added MAP_POPULATE constant.
+ Added :data:`MAP_POPULATE` constant.
.. versionadded:: 3.11
- Added MAP_STACK constant.
+ Added :data:`MAP_STACK` constant.
+
+ .. versionadded:: 3.12
+ Added :data:`MAP_ALIGNED_SUPER` constant.
+ Added :data:`MAP_CONCEAL` constant.