Skip to content
Merged
Prev Previous commit
Next Next commit
Fix some typos.
  • Loading branch information
ericsnowcurrently committed Jul 12, 2024
commit d64d298ae1d0ea4412b94ef1f5f201a7d36fcdce
4 changes: 2 additions & 2 deletions Lib/test/support/interpreters/queues.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def create(maxsize=0, *, syncobj=False, unbounditems=UNBOUND):
"syncobj" sets the default for Queue.put()
and Queue.put_nowait().

"unbounditems" likewise sets the default. See Queue.pop() for
"unbounditems" likewise sets the default. See Queue.put() for
supported values. The default value is UNBOUND, which replaces
the unbound item.
"""
Expand Down Expand Up @@ -206,7 +206,7 @@ def put(self, obj, timeout=None, *,
This blocks while the queue is full.

If "syncobj" is None (the default) then it uses the
queue's default, set with create_queue()..
queue's default, set with create_queue().

If "syncobj" is false then all objects are supported,
at the expense of worse performance.
Expand Down