Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions stdlib/tarfile.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -119,16 +119,16 @@ class TarFile:
OPEN_METH: ClassVar[Mapping[str, str]]
name: StrOrBytesPath | None
mode: Literal["r", "a", "w", "x"]
fileobj: _Fileobj | None
format: _TarFormat | None
fileobj: _Fileobj
format: _TarFormat
tarinfo: type[TarInfo]
dereference: bool | None
ignore_zeros: bool | None
encoding: str | None
dereference: bool
ignore_zeros: bool
encoding: str
errors: str
fileobject: type[ExFileObject] # undocumented
pax_headers: Mapping[str, str]
debug: int | None
debug: int
errorlevel: int
offset: int # undocumented
extraction_filter: _FilterFunction | None
Expand Down
Loading