summaryrefslogtreecommitdiffstats
path: root/Doc/library/multiprocessing.rst
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-10-23 19:19:26 (GMT)
committerGitHub <noreply@github.com>2023-10-23 19:19:26 (GMT)
commit38578dd665a0fd88b768d8d7c080fa404cc57923 (patch)
tree606ccc57d09589bc8210b7ccd83d004da4315958 /Doc/library/multiprocessing.rst
parent87123ab5454aaafe874098e1a4232247bc97860f (diff)
downloadcpython-38578dd665a0fd88b768d8d7c080fa404cc57923.zip
cpython-38578dd665a0fd88b768d8d7c080fa404cc57923.tar.gz
cpython-38578dd665a0fd88b768d8d7c080fa404cc57923.tar.bz2
[3.12] gh-101100: Fix Sphinx warnings for `fileno` (GH-111118) (#111226)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-rw-r--r--Doc/library/multiprocessing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 773fca4..01a2417 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -2571,7 +2571,7 @@ multiple connections at the same time.
**Windows**: An item in *object_list* must either be an integer
handle which is waitable (according to the definition used by the
documentation of the Win32 function ``WaitForMultipleObjects()``)
- or it can be an object with a :meth:`fileno` method which returns a
+ or it can be an object with a :meth:`~io.IOBase.fileno` method which returns a
socket handle or pipe handle. (Note that pipe handles and socket
handles are **not** waitable handles.)