diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-09-22 17:33:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-22 17:33:36 (GMT) |
commit | 36122e18148c5b6c78ebce1d36d514fd7cf250f5 (patch) | |
tree | 2da76a2182b026faf0ef209c120cb6ca69491a11 /Doc/library/mmap.rst | |
parent | ecb6922ff2d56476a6cfb0941ae55aca5e7fae3d (diff) | |
download | cpython-36122e18148c5b6c78ebce1d36d514fd7cf250f5.zip cpython-36122e18148c5b6c78ebce1d36d514fd7cf250f5.tar.gz cpython-36122e18148c5b6c78ebce1d36d514fd7cf250f5.tar.bz2 |
bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515)
Replace old names when they refer to actual versions of macOS.
Keep historical names in references to older versions.
Co-authored-by: Patrick Reader <_@pxeger.com>
Diffstat (limited to 'Doc/library/mmap.rst')
-rw-r--r-- | Doc/library/mmap.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/mmap.rst b/Doc/library/mmap.rst index d9825b4..da17475 100644 --- a/Doc/library/mmap.rst +++ b/Doc/library/mmap.rst @@ -102,7 +102,7 @@ To map anonymous memory, -1 should be passed as the fileno along with the length To ensure validity of the created memory mapping the file specified by the descriptor *fileno* is internally automatically synchronized - with physical backing store on Mac OS X and OpenVMS. + with physical backing store on macOS and OpenVMS. This example shows a simple way of using :class:`~mmap.mmap`:: |