mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-11 19:19:35 +02:00
16 lines
299 B
Python
16 lines
299 B
Python
from typing import Optional, Tuple
|
|
|
|
IO_BUFFER_SIZE: int
|
|
|
|
|
|
class JobCapsule:
|
|
pass
|
|
|
|
|
|
def begin_create_signature(file_size: int = -1, strong_len: int = 0) -> JobCapsule:
|
|
pass
|
|
|
|
|
|
def iter_job(job_capsule: JobCapsule, input_data: bytes, eof: Optional[bool] = None) -> Tuple[bytes, bool]:
|
|
pass
|