summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2011-07-13 11:52:05 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2011-07-13 11:52:05 +0200
commit73050c16039e2adc3cb09b522a0ef36de450737e (patch)
tree34fc27d025fb5a586c9cf0dc5978c9ce821ee3fa /doc/source
parent19e2e0f210da3fb4cb87cfe1ddd4bbc6c61d8cd1 (diff)
downloadpython-apt-73050c16039e2adc3cb09b522a0ef36de450737e.tar.gz
* add missing bits for the xz compression support for the
0.7 API, thanks to Colin Watson for the fix! (LP: #805389) * backport xz compression support the debian-sid bzr branch (LP: #805389) * apt/utils.py: - fix end date calculation for releases in june (LP: #602469) * apt/package.py: - Fix the changelog downloading if there are several source package versions available which provide the binary (LP: #377535). See http://bugs.debian.org/581831 for further details * debian/control: - update Vcs-Bzr location
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/library/apt_inst.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/library/apt_inst.rst b/doc/source/library/apt_inst.rst
index d9403a9e..9e6772f5 100644
--- a/doc/source/library/apt_inst.rst
+++ b/doc/source/library/apt_inst.rst
@@ -134,8 +134,8 @@ Debian Packages
.. attribute:: data
- The :class:`TarFile` object associated with the data.tar.{gz,bz2,lzma}
- member.
+ The :class:`TarFile` object associated with the
+ data.tar.{gz,bz2,lzma,xz} member.
.. attribute:: debian_binary
@@ -307,7 +307,7 @@ function can be replaced.
Call the function *func* for each member of the tar file *file*.
The parameter *comp* is a string determining the compressor used. Possible
- options are "lzma", "bzip2" and "gzip". The parameter *file* may be
+ options are "xz", "lzma", "bzip2" and "gzip". The parameter *file* may be
a :class:`file()` object, a file descriptor, or anything implementing
a :meth:`fileno` method.