From d02c6a3efb367017286e56c223f9c681f5dd961a Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Wed, 18 Jun 2025 18:17:37 -0600 Subject: [PATCH] Drop the syncobj parameter. --- peps/pep-0734.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/peps/pep-0734.rst b/peps/pep-0734.rst index 4ed779b6745..df6c87e817f 100644 --- a/peps/pep-0734.rst +++ b/peps/pep-0734.rst @@ -465,12 +465,10 @@ is sent (and shared) without serialization. See `Shareable Objects`_. The module defines the following functions: -* ``create_queue(maxsize=0, *, syncobj=False) -> Queue`` +* ``create_queue(maxsize=0) -> Queue`` Create a new queue. If the maxsize is zero or negative then the queue is unbounded. - "syncobj" is used as the default for ``put()`` and ``put_nowait()``. - Queue Objects -------------