Closed as not planned
Description
Feature or enhancement
Note: this is less of a feature or enhancement, and more of a technical debt refactor - however, I don't see an Issue option for "Refactoring," so this is the closest label.
The __init__
method of queue.Queue
passes in the maxsize
argument to the _init
method:
Lines 34 to 36 in ee40b3e
but the _init
method does not actually use the maxsize
argument at all:
Lines 205 to 209 in ee40b3e
Pitch
Remove this unused maxsize
argument.