diff options
author | Raymond Hettinger <python@rcn.com> | 2014-05-22 23:05:48 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2014-05-22 23:05:48 (GMT) |
commit | 198123c607323744ec5a35bce851f31b9244cacd (patch) | |
tree | cb0e9a99b0472603435c9abdf1382f0a97089b89 | |
parent | fbb60d562caa99ead34664f5a27235d296bcba7e (diff) | |
download | cpython-198123c607323744ec5a35bce851f31b9244cacd.zip cpython-198123c607323744ec5a35bce851f31b9244cacd.tar.gz cpython-198123c607323744ec5a35bce851f31b9244cacd.tar.bz2 |
Issue 21198: Minor tarfile documentation bug.
-rw-r--r-- | Doc/library/tarfile.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/tarfile.rst b/Doc/library/tarfile.rst index 6bac65e..99a9f2b 100644 --- a/Doc/library/tarfile.rst +++ b/Doc/library/tarfile.rst @@ -544,7 +544,7 @@ A ``TarInfo`` object has the following public data attributes: :const:`AREGTYPE`, :const:`LNKTYPE`, :const:`SYMTYPE`, :const:`DIRTYPE`, :const:`FIFOTYPE`, :const:`CONTTYPE`, :const:`CHRTYPE`, :const:`BLKTYPE`, :const:`GNUTYPE_SPARSE`. To determine the type of a :class:`TarInfo` object - more conveniently, use the ``is_*()`` methods below. + more conveniently, use the ``is*()`` methods below. .. attribute:: TarInfo.linkname |