summaryrefslogtreecommitdiffstats
path: root/Doc/library/exceptions.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-03-13 19:04:40 (GMT)
committerGeorg Brandl <georg@python.org>2009-03-13 19:04:40 (GMT)
commitae2dbe2543859f9ad0ff0a2e84b33421c8fd5406 (patch)
treec903b7d3d7b48ad04fc1107aa3225fdd212cb5df /Doc/library/exceptions.rst
parentf87e04d3398091662c399ee5ba0a3e71dbae9a24 (diff)
downloadcpython-ae2dbe2543859f9ad0ff0a2e84b33421c8fd5406.zip
cpython-ae2dbe2543859f9ad0ff0a2e84b33421c8fd5406.tar.gz
cpython-ae2dbe2543859f9ad0ff0a2e84b33421c8fd5406.tar.bz2
#5486: typos.
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 b1626f2..7d8e1b3 100644
--- a/Doc/library/exceptions.rst
+++ b/Doc/library/exceptions.rst
@@ -53,7 +53,7 @@ The following exceptions are only used as base classes for other exceptions.
The base class for all built-in exceptions. It is not meant to be directly
inherited by user-defined classes (for that use :exc:`Exception`). If
:func:`str` or :func:`unicode` is called on an instance of this class, the
- representation of the argument(s) to the instance are returned or the emptry
+ representation of the argument(s) to the instance are returned or the empty
string when there were no arguments. All arguments are stored in :attr:`args`
as a tuple.