(start, stop)
| 80 | return x |
| 81 | |
| 82 | def 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 | |
| 92 | class UnseekableIO(io.BytesIO): |
no outgoing calls
no test coverage detected
searching dependent graphs…