diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-04-13 18:49:48 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-04-13 18:49:48 (GMT) |
commit | 8e37d5df95535081426f5e7fe450695f6dcfe676 (patch) | |
tree | 639ab44183299e0c6a0c9353f65be8e3b797f83d /Doc/library/smtplib.rst | |
parent | c1d3daf58b8df00e680e91f0e568270ea8e85adb (diff) | |
download | cpython-8e37d5df95535081426f5e7fe450695f6dcfe676.zip cpython-8e37d5df95535081426f5e7fe450695f6dcfe676.tar.gz cpython-8e37d5df95535081426f5e7fe450695f6dcfe676.tar.bz2 |
#2118: Make SMTPException a subclass of IOError.
Initial patch by Ned Jackson Lovely.
Diffstat (limited to 'Doc/library/smtplib.rst')
-rw-r--r-- | Doc/library/smtplib.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/smtplib.rst b/Doc/library/smtplib.rst index 9593dea..04036dc 100644 --- a/Doc/library/smtplib.rst +++ b/Doc/library/smtplib.rst @@ -103,8 +103,8 @@ A nice selection of exceptions is defined as well: .. exception:: SMTPException - The base exception class for all the other excpetions provided by this - module. + Subclass of :exc:`IOError` that is the base exception class for all + the other excpetions provided by this module. .. exception:: SMTPServerDisconnected |