Mercurial > hg > cc > cirrus_work
changeset 360:e972c3289865 plus
cython not used (?), fix Q type
| author | Henry S. Thompson <ht@inf.ed.ac.uk> |
|---|---|
| date | Thu, 19 Mar 2026 17:17:02 +0000 |
| parents | 3a7604314cc0 |
| children | 97e049b06f69 |
| files | lib/python/cc/warc.py |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lib/python/cc/warc.py Mon Mar 16 19:07:10 2026 +0000 +++ b/lib/python/cc/warc.py Thu Mar 19 17:17:02 2026 +0000 @@ -6,7 +6,7 @@ import sys, io #from isal import igzip -import cython, typing, gzip_plus +import typing, gzip_plus from collections import deque INFO: int = 0 @@ -22,7 +22,7 @@ HDRMAX: int = 0 # will grow RECORDMAX: int = 0 # will grow -Q: queue = None +Q: deque = None def enq(b: int, e: int): global Q
