summaryrefslogtreecommitdiffstats
path: root/Doc/library/mmap.rst
diff options
context:
space:
mode:
authorDavid CARLIER <devnexen@gmail.com>2021-12-29 13:52:29 (GMT)
committerGitHub <noreply@github.com>2021-12-29 13:52:29 (GMT)
commit66c47b63a0df3143fe48d6efc1183eecda2a363d (patch)
treee2afecfc8dd8583c2bbb45e9462d82d6f735d3ca /Doc/library/mmap.rst
parent77195cd44b2506cda88a3cfc98918526068b1d46 (diff)
downloadcpython-66c47b63a0df3143fe48d6efc1183eecda2a363d.zip
cpython-66c47b63a0df3143fe48d6efc1183eecda2a363d.tar.gz
cpython-66c47b63a0df3143fe48d6efc1183eecda2a363d.tar.bz2
bpo-46176: mmap module adding MAP_STACK constant. (GH-30252)
Diffstat (limited to 'Doc/library/mmap.rst')
-rw-r--r--Doc/library/mmap.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/mmap.rst b/Doc/library/mmap.rst
index c1ebd80..d19580c 100644
--- a/Doc/library/mmap.rst
+++ b/Doc/library/mmap.rst
@@ -367,8 +367,12 @@ MAP_* Constants
MAP_ANON
MAP_ANONYMOUS
MAP_POPULATE
+ MAP_STACK
These are the various flags that can be passed to :meth:`mmap.mmap`. Note that some options might not be present on some systems.
.. versionchanged:: 3.10
Added MAP_POPULATE constant.
+
+ .. versionadded:: 3.11
+ Added MAP_STACK constant.