summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAlex Waygood <Alex.Waygood@Gmail.com>2022-05-19 15:25:58 (GMT)
committerGitHub <noreply@github.com>2022-05-19 15:25:58 (GMT)
commit639b62c9c479e38a6f91a80b261097574a1e7ac7 (patch)
tree97a1ad9d17af40f9efd0268b477774c9fe95a140 /Doc
parentfb082c2fc5a925085b179e63ca10b7f60b356d2f (diff)
downloadcpython-639b62c9c479e38a6f91a80b261097574a1e7ac7.zip
cpython-639b62c9c479e38a6f91a80b261097574a1e7ac7.tar.gz
cpython-639b62c9c479e38a6f91a80b261097574a1e7ac7.tar.bz2
gh-92417: `socket` docs: remove references to Python <3.3 (GH-92544)
Diffstat (limited to 'Doc')
-rwxr-xr-xDoc/library/socket.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst
index 4c193b8..95cd37a 100755
--- a/Doc/library/socket.rst
+++ b/Doc/library/socket.rst
@@ -233,9 +233,9 @@ resolution and/or the host configuration. For deterministic behavior use a
numeric address in *host* portion.
All errors raise exceptions. The normal exceptions for invalid argument types
-and out-of-memory conditions can be raised; starting from Python 3.3, errors
+and out-of-memory conditions can be raised. Errors
related to socket or address semantics raise :exc:`OSError` or one of its
-subclasses (they used to raise :exc:`socket.error`).
+subclasses.
Non-blocking mode is supported through :meth:`~socket.setblocking`. A
generalization of this based on timeouts is supported through