summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2014-03-31 21:44:13 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2014-03-31 21:44:13 (GMT)
commit5898d4f4d917c0f3e63f0a10d01ad445afa10b74 (patch)
treee8853cdfb1d5b1f67b6546c4d53a1e9b0408fec8 /Doc
parent050f9ea4d7e20634b6405006870dd5b0de9cb0aa (diff)
downloadcpython-5898d4f4d917c0f3e63f0a10d01ad445afa10b74.zip
cpython-5898d4f4d917c0f3e63f0a10d01ad445afa10b74.tar.gz
cpython-5898d4f4d917c0f3e63f0a10d01ad445afa10b74.tar.bz2
IOError -> OSError
Diffstat (limited to 'Doc')
-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 0aac1bf..329fdd5 100644
--- a/Doc/library/exceptions.rst
+++ b/Doc/library/exceptions.rst
@@ -82,7 +82,7 @@ The following exceptions are used mostly as base classes for other exceptions.
.. attribute:: args
The tuple of arguments given to the exception constructor. Some built-in
- exceptions (like :exc:`IOError`) expect a certain number of arguments and
+ exceptions (like :exc:`OSError`) expect a certain number of arguments and
assign a special meaning to the elements of this tuple, while others are
usually called only with a single string giving an error message.