Skip to content

Commit 8bda61c

Browse files
Updated queue arguments
1 parent ecab230 commit 8bda61c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/concurrent/interpreters/_queues.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def put_nowait(self, obj, *, unbounditems=None):
235235
unboundop, = _serialize_unbound(unbounditems)
236236
_queues.put(self._id, obj, unboundop, False)
237237

238-
def get(self, block=True, timeout=None, *):
238+
def get(self, block=True, timeout=None):
239239
"""Return the next object from the queue.
240240
241241
If "block" is true, this blocks while the queue is empty.

0 commit comments

Comments
 (0)