blob: e38459267d91ed1cdb92b0aef7c7e1a900021890 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from _typeshed import Incomplete, StrOrBytesPath
from collections.abc import Sequence
from tarfile import TarInfo
def rebuild(
filename: StrOrBytesPath,
tag: Incomplete | None = None,
format: str = "gz",
zonegroups: Sequence[str | TarInfo] = [],
metadata: Incomplete | None = None,
) -> None: ...
|