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

Function itersize

Lib/test/pickletester.py:82–89  ·  view source on GitHub ↗
(start, stop)

Source from the content-addressed store, hash-verified

80 return x
81
82def itersize(start, stop):
83 # Produce geometrical increasing sequence from start to stop
84 # (inclusively) for tests.
85 size = start
86 while size < stop:
87 yield size
88 size <<= 1
89 yield stop
90
91
92class UnseekableIO(io.BytesIO):

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…