From: Andrew Svetlov Date: Mon, 31 Mar 2014 21:44:13 +0000 (+0300) Subject: IOError -> OSError X-Git-Tag: v3.4.1rc1~146 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5898d4f4d917c0f3e63f0a10d01ad445afa10b74;p=thirdparty%2FPython%2Fcpython.git IOError -> OSError --- diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index 0aac1bf0262d..329fdd5abb1a 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.