summaryrefslogtreecommitdiffstats
path: root/Doc/library/exceptions.rst
diff options
context:
space:
mode:
authorAndre Delfino <adelfino@gmail.com>2018-12-05 19:45:30 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-12-05 19:45:30 (GMT)
commit55f41e45b4318cbe19209f5144641344d0049fb8 (patch)
treeec0b6422a595cf8cfbae67d0525f6644b9314833 /Doc/library/exceptions.rst
parent1ce853f37783575e2b3aaa159ddcebc8660830ef (diff)
downloadcpython-55f41e45b4318cbe19209f5144641344d0049fb8.zip
cpython-55f41e45b4318cbe19209f5144641344d0049fb8.tar.gz
cpython-55f41e45b4318cbe19209f5144641344d0049fb8.tar.bz2
Correct a couple of unbalanced parenthesis. (GH-10779)
Diffstat (limited to 'Doc/library/exceptions.rst')
-rw-r--r--Doc/library/exceptions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst
index e33b886..57ed291 100644
--- a/Doc/library/exceptions.rst
+++ b/Doc/library/exceptions.rst
@@ -52,7 +52,7 @@ will be set as :attr:`__cause__` on the raised exception. Setting
:attr:`__cause__` also implicitly sets the :attr:`__suppress_context__`
attribute to ``True``, so that using ``raise new_exc from None``
effectively replaces the old exception with the new one for display
-purposes (e.g. converting :exc:`KeyError` to :exc:`AttributeError`, while
+purposes (e.g. converting :exc:`KeyError` to :exc:`AttributeError`), while
leaving the old exception available in :attr:`__context__` for introspection
when debugging.