https://github.com/python/cpython/commit/229ed3dd1f97b2f87629a240b90eddba5ded67bf
commit: 229ed3dd1f97b2f87629a240b90eddba5ded67bf
branch: main
author: flovent <[email protected]>
committer: gpshead <[email protected]>
date: 2025-11-30T13:10:01-08:00
summary:

gh-142067: Add missing default value for param in `multiprocessing.Pipe`'s doc 
(GH-142109)

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]

Reply via email to