diff options
author | Georg Brandl <georg@python.org> | 2016-02-25 19:17:45 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2016-02-25 19:17:45 (GMT) |
commit | 8c16cb9f65bfc7d732bc6bd3f533856795a95690 (patch) | |
tree | ee95fd5346ec40c976a07ffce0348d56180d8251 /Doc/library/mmap.rst | |
parent | 2305b3cde3406f3a0ee7ff8c858bce5d372c77ae (diff) | |
download | cpython-8c16cb9f65bfc7d732bc6bd3f533856795a95690.zip cpython-8c16cb9f65bfc7d732bc6bd3f533856795a95690.tar.gz cpython-8c16cb9f65bfc7d732bc6bd3f533856795a95690.tar.bz2 |
Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak.
Diffstat (limited to 'Doc/library/mmap.rst')
-rw-r--r-- | Doc/library/mmap.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/mmap.rst b/Doc/library/mmap.rst index b74a823..33baf2b 100644 --- a/Doc/library/mmap.rst +++ b/Doc/library/mmap.rst @@ -174,7 +174,7 @@ To map anonymous memory, -1 should be passed as the fileno along with the length Optional arguments *start* and *end* are interpreted as in slice notation. Returns ``-1`` on failure. - .. versionchanged: 3.5 + .. versionchanged:: 3.5 Writable :term:`bytes-like object` is now accepted. @@ -237,7 +237,7 @@ To map anonymous memory, -1 should be passed as the fileno along with the length Optional arguments *start* and *end* are interpreted as in slice notation. Returns ``-1`` on failure. - .. versionchanged: 3.5 + .. versionchanged:: 3.5 Writable :term:`bytes-like object` is now accepted. @@ -267,7 +267,7 @@ To map anonymous memory, -1 should be passed as the fileno along with the length were written. If the mmap was created with :const:`ACCESS_READ`, then writing to it will raise a :exc:`TypeError` exception. - .. versionchanged: 3.5 + .. versionchanged:: 3.5 Writable :term:`bytes-like object` is now accepted. |