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 -------------