diff options
author | NAKAMURA Osamu <osamu0329nakamura@users.noreply.github.com> | 2017-03-25 02:55:08 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2017-03-25 02:55:08 (GMT) |
commit | 29540cdf6c66df9f806375a95078c0c63192ef78 (patch) | |
tree | 96080b7bcd55eeb0abeff96ef4537e99a961ac52 /Doc | |
parent | 8f9e1bbf2dbdf46a0bf920279568a31460043376 (diff) | |
download | cpython-29540cdf6c66df9f806375a95078c0c63192ef78.zip cpython-29540cdf6c66df9f806375a95078c0c63192ef78.tar.gz cpython-29540cdf6c66df9f806375a95078c0c63192ef78.tar.bz2 |
bpo-29892: Fix wrong markup on doc-lib-functions (GH-802)
Diffstat (limited to 'Doc')
-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 |