]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-92417: `socket` docs: remove references to Python <3.3 (GH-92544)
authorAlex Waygood <Alex.Waygood@Gmail.com>
Thu, 19 May 2022 15:25:58 +0000 (16:25 +0100)
committerGitHub <noreply@github.com>
Thu, 19 May 2022 15:25:58 +0000 (17:25 +0200)
Doc/library/socket.rst

index 4c193b892bda8fc106a6709e3a6071c7e969998e..95cd37a415df1e67fb6efa7cbdc87acef3351b39 100755 (executable)
@@ -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