Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-89159: Add missing TarInfo members #91564

Merged
merged 2 commits into from
Jan 12, 2024
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
30 changes: 30 additions & 0 deletions Doc/library/tarfile.rst
Original file line number Diff line number Diff line change
Expand Up @@ -837,6 +837,36 @@ A ``TarInfo`` object has the following public data attributes:
:meth:`~TarFile.extractall`, causing extraction to skip applying this
attribute.

.. attribute:: TarInfo.chksum

Header checksum.


.. attribute:: TarInfo.devmajor

Device major number.


.. attribute:: TarInfo.devminor

Device minor number.


.. attribute:: TarInfo.offset

The tar header starts here.


.. attribute:: TarInfo.offset_data

The file's data starts here.


.. attribute:: TarInfo.sparse

Sparse member information.


.. attribute:: TarInfo.pax_headers
:type: dict

Expand Down
Loading