summaryrefslogtreecommitdiffstats
path: root/Doc/library/ftplib.rst
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-10-12 15:53:43 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-10-12 15:53:43 (GMT)
commit5574c3012da66b3c5d300f00e19baa06688d0c51 (patch)
tree98b94d14fa01928e7c86616b172a9f56ba0942a3 /Doc/library/ftplib.rst
parent195e702831a3eb9b7c55b30aca24c5d741fd204b (diff)
downloadcpython-5574c3012da66b3c5d300f00e19baa06688d0c51.zip
cpython-5574c3012da66b3c5d300f00e19baa06688d0c51.tar.gz
cpython-5574c3012da66b3c5d300f00e19baa06688d0c51.tar.bz2
Replace mentions of socket.error.
Diffstat (limited to 'Doc/library/ftplib.rst')
-rw-r--r--Doc/library/ftplib.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/ftplib.rst b/Doc/library/ftplib.rst
index 087e200..d13f2f0 100644
--- a/Doc/library/ftplib.rst
+++ b/Doc/library/ftplib.rst
@@ -144,8 +144,7 @@ The module defines the following items:
The set of all exceptions (as a tuple) that methods of :class:`FTP`
instances may raise as a result of problems with the FTP connection (as
opposed to programming errors made by the caller). This set includes the
- four exceptions listed above as well as :exc:`socket.error` and
- :exc:`IOError`.
+ four exceptions listed above as well as :exc:`OSError`.
.. seealso::