diff options
author | David CARLIER <devnexen@gmail.com> | 2020-11-21 11:39:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-21 11:39:56 (GMT) |
commit | 0e62efc51e31c741b61604787aeab4936e6e50e4 (patch) | |
tree | 6225f28f1bceae5d51cbf602cf2e3cba9157d2de /Doc/library/mmap.rst | |
parent | 1db76394ea79030aa4ed5349c950f6c6da51450f (diff) | |
download | cpython-0e62efc51e31c741b61604787aeab4936e6e50e4.zip cpython-0e62efc51e31c741b61604787aeab4936e6e50e4.tar.gz cpython-0e62efc51e31c741b61604787aeab4936e6e50e4.tar.bz2 |
bpo-42232: mmap module add Darwin specific madvise options. (GH-23076)
Diffstat (limited to 'Doc/library/mmap.rst')
-rw-r--r-- | Doc/library/mmap.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/mmap.rst b/Doc/library/mmap.rst index 698c176..d9825b4 100644 --- a/Doc/library/mmap.rst +++ b/Doc/library/mmap.rst @@ -337,6 +337,8 @@ MADV_* Constants MADV_NOCORE MADV_CORE MADV_PROTECT + MADV_FREE_REUSABLE + MADV_FREE_REUSE These options can be passed to :meth:`mmap.madvise`. Not every option will be present on every system. |