MCPcopy Index your code
hub / github.com/python/cpython / _init

Method _init

Lib/queue.py:263–264  ·  view source on GitHub ↗
(self, maxsize)

Source from the content-addressed store, hash-verified

261
262 # Initialize the queue representation
263 def _init(self, maxsize):
264 self.queue = deque()
265
266 def _qsize(self):
267 return len(self.queue)

Callers 1

__init__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected