https://github.com/python/cpython/commit/4dbf8e14ba6a03705dfd05fcb8036e2db27d0c18 commit: 4dbf8e14ba6a03705dfd05fcb8036e2db27d0c18 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: gpshead <[email protected]> date: 2025-11-30T21:15:39Z summary:
[3.14] gh-142067: Add missing default value for param in `multiprocessing.Pipe`'s doc (GH-142109) (#142120) gh-142067: Add missing default value for param in `multiprocessing.Pipe`'s doc (GH-142109) (cherry picked from commit 229ed3dd1f97b2f87629a240b90eddba5ded67bf) Co-authored-by: flovent <[email protected]> files: M Doc/library/multiprocessing.rst diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index cbc98b256a93a4..b297001f2b544e 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -890,7 +890,7 @@ For an example of the usage of queues for interprocess communication see :ref:`multiprocessing-examples`. -.. function:: Pipe([duplex]) +.. function:: Pipe(duplex=True) Returns a pair ``(conn1, conn2)`` of :class:`~multiprocessing.connection.Connection` objects representing the _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
