Skip to content

Commit 64efce2

Browse files
[PR #10568/8ac48306 backport][3.12] Docs fixups following implement socket factory (#10534) (#10637)
**This is a backport of PR #10568 as merged into master (8ac4830).** Co-authored-by: Tim Menninger <[email protected]>
1 parent b2965de commit 64efce2

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

CHANGES/10474.feature.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
10520.feature.rst

docs/client_advanced.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -465,8 +465,8 @@ Custom socket creation
465465
^^^^^^^^^^^^^^^^^^^^^^
466466

467467
If the default socket is insufficient for your use case, pass an optional
468-
`socket_factory` to the :class:`~aiohttp.TCPConnector`, which implements
469-
`SocketFactoryType`. This will be used to create all sockets for the
468+
``socket_factory`` to the :class:`~aiohttp.TCPConnector`, which implements
469+
:class:`SocketFactoryType`. This will be used to create all sockets for the
470470
lifetime of the class object. For example, we may want to change the
471471
conditions under which we consider a connection dead. The following would
472472
make all sockets respect 9*7200 = 18 hours::

docs/client_reference.rst

+7-11
Original file line numberDiff line numberDiff line change
@@ -1138,31 +1138,27 @@ is controlled by *force_close* constructor's parameter).
11381138
overridden in subclasses.
11391139

11401140

1141-
.. autodata:: AddrInfoType
1142-
1143-
.. note::
1141+
.. py:class:: AddrInfoType
11441142
11451143
Refer to :py:data:`aiohappyeyeballs.AddrInfoType` for more info.
11461144

11471145
.. warning::
11481146

11491147
Be sure to use ``aiohttp.AddrInfoType`` rather than
11501148
``aiohappyeyeballs.AddrInfoType`` to avoid import breakage, as
1151-
it is likely to be removed from ``aiohappyeyeballs`` in the
1149+
it is likely to be removed from :mod:`aiohappyeyeballs` in the
11521150
future.
11531151

11541152

1155-
.. autodata:: SocketFactoryType
1156-
1157-
.. note::
1153+
.. py:class:: SocketFactoryType
11581154
11591155
Refer to :py:data:`aiohappyeyeballs.SocketFactoryType` for more info.
11601156

11611157
.. warning::
11621158

11631159
Be sure to use ``aiohttp.SocketFactoryType`` rather than
11641160
``aiohappyeyeballs.SocketFactoryType`` to avoid import breakage,
1165-
as it is likely to be removed from ``aiohappyeyeballs`` in the
1161+
as it is likely to be removed from :mod:`aiohappyeyeballs` in the
11661162
future.
11671163

11681164

@@ -1294,9 +1290,9 @@ is controlled by *force_close* constructor's parameter).
12941290

12951291
.. versionadded:: 3.10
12961292

1297-
:param :py:data:``SocketFactoryType`` socket_factory: This function takes an
1298-
:py:data:``AddrInfoType`` and is used in lieu of ``socket.socket()`` when
1299-
creating TCP connections.
1293+
:param SocketFactoryType socket_factory: This function takes an
1294+
:py:data:`AddrInfoType` and is used in lieu of
1295+
:py:func:`socket.socket` when creating TCP connections.
13001296

13011297
.. versionadded:: 3.12
13021298

docs/conf.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"aiohttpsession": ("https://aiohttp-session.readthedocs.io/en/stable/", None),
8585
"aiohttpdemos": ("https://aiohttp-demos.readthedocs.io/en/latest/", None),
8686
"aiojobs": ("https://aiojobs.readthedocs.io/en/stable/", None),
87-
"aiohappyeyeballs": ("https://aiohappyeyeballs.readthedocs.io/en/stable/", None),
87+
"aiohappyeyeballs": ("https://aiohappyeyeballs.readthedocs.io/en/latest/", None),
8888
}
8989

9090
# Add any paths that contain templates here, relative to this directory.
@@ -420,6 +420,7 @@
420420
("py:class", "aiohttp.web.MatchedSubAppResource"), # undocumented
421421
("py:attr", "body"), # undocumented
422422
("py:class", "socket.socket"), # undocumented
423+
("py:func", "socket.socket"), # undocumented
423424
("py:class", "socket.AddressFamily"), # undocumented
424425
("py:obj", "logging.DEBUG"), # undocumented
425426
("py:class", "aiohttp.abc.AbstractAsyncAccessLogger"), # undocumented

0 commit comments

Comments
 (0)