summaryrefslogtreecommitdiffstats
path: root/Doc/library/tarfile.rst
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2009-10-05 21:24:35 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2009-10-05 21:24:35 (GMT)
commitf5852f59d9df1f2d86754c645f35a01da2f465cf (patch)
tree33cf72ee161431fbd680082312f92d69b8504f36 /Doc/library/tarfile.rst
parent3fab04078d58bccc873837c2f243ed792163031c (diff)
downloadcpython-f5852f59d9df1f2d86754c645f35a01da2f465cf.zip
cpython-f5852f59d9df1f2d86754c645f35a01da2f465cf.tar.gz
cpython-f5852f59d9df1f2d86754c645f35a01da2f465cf.tar.bz2
Fix narkup
Diffstat (limited to 'Doc/library/tarfile.rst')
-rw-r--r--Doc/library/tarfile.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/tarfile.rst b/Doc/library/tarfile.rst
index fa6cca7..6b38499 100644
--- a/Doc/library/tarfile.rst
+++ b/Doc/library/tarfile.rst
@@ -399,7 +399,7 @@ object, see :ref:`tarinfo-objects` for details.
value. Depending on this value the respective file is either excluded
(:const:`True`) or added (:const:`False`). If *filter* is specified it must
be a function that takes a :class:`TarInfo` object argument and returns the
- changed TarInfo object. If it instead returns :const:`None` the TarInfo
+ changed :class:`TarInfo` object. If it instead returns :const:`None` the :class:`TarInfo`
object will be excluded from the archive. See :ref:`tar-examples` for an
example.