diff options
author | Mariatta <Mariatta@users.noreply.github.com> | 2017-05-30 22:26:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-30 22:26:42 (GMT) |
commit | 9efad1e5aef32a6d8ca288793e8ee6df8782f615 (patch) | |
tree | c446e98951ab3ae2a9d6b4f10daf788d96e61169 /Doc | |
parent | b351248c1fa74277b886b0c9a2e1c2f65fabe9ef (diff) | |
download | cpython-9efad1e5aef32a6d8ca288793e8ee6df8782f615.zip cpython-9efad1e5aef32a6d8ca288793e8ee6df8782f615.tar.gz cpython-9efad1e5aef32a6d8ca288793e8ee6df8782f615.tar.bz2 |
bpo-17188: add missing periods at the end of sentences (GH-1875)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/simple_stmts.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index 2429f11..8786d73 100644 --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -630,11 +630,11 @@ Additional information on exceptions can be found in section :ref:`exceptions`, and information about handling exceptions is in section :ref:`try`. .. versionchanged:: 3.3 - :const:`None` is now permitted as ``Y`` in ``raise X from Y`` + :const:`None` is now permitted as ``Y`` in ``raise X from Y``. .. versionadded:: 3.3 The ``__suppress_context__`` attribute to suppress automatic display of the - exception context + exception context. .. _break: |