diff options
author | Mariatta <Mariatta@users.noreply.github.com> | 2017-03-25 03:04:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-25 03:04:40 (GMT) |
commit | 5dafaece67cb576ef96579fb5ddcbf62e0827b0d (patch) | |
tree | 53a1afcd3b344e021616298708b8d1c1e091d403 | |
parent | 74bfcc314b188e1e8c90e442270e36d6510755ee (diff) | |
download | cpython-5dafaece67cb576ef96579fb5ddcbf62e0827b0d.zip cpython-5dafaece67cb576ef96579fb5ddcbf62e0827b0d.tar.gz cpython-5dafaece67cb576ef96579fb5ddcbf62e0827b0d.tar.bz2 |
bpo-29892: Fix wrong markup on doc-lib-functions (GH-802) (GH-810)
(cherry picked from commit 29540cdf6c66df9f806375a95078c0c63192ef78)
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index c26037b..64c9569 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1072,7 +1072,7 @@ are always available. They are listed here in alphabetical order. * The ``'x'`` mode was added. * :exc:`IOError` used to be raised, it is now an alias of :exc:`OSError`. * :exc:`FileExistsError` is now raised if the file opened in exclusive - * creation mode (``'x'``) already exists. + creation mode (``'x'``) already exists. .. versionchanged:: 3.4 |