summaryrefslogtreecommitdiff
path: root/doc/source/apt_inst.rst
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-04-15 20:23:04 +0200
committerJulian Andres Klode <jak@debian.org>2009-04-15 20:23:04 +0200
commitabc7c861e85265b0725aa82a51fe41f9183bc506 (patch)
tree611819fece2da28d796b184457fb413f1f7b497d /doc/source/apt_inst.rst
parentb71b5243d22f75ba5df926e8086345498157032e (diff)
downloadpython-apt-abc7c861e85265b0725aa82a51fe41f9183bc506.tar.gz
* Upload as 0.7.90 to experimental
This is the first pre-release of python-apt 0.8. It is completely backward compatible (even on Python 3), API changes will appear in 0.7.91.
Diffstat (limited to 'doc/source/apt_inst.rst')
-rw-r--r--doc/source/apt_inst.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/source/apt_inst.rst b/doc/source/apt_inst.rst
index 999d074e..cd371e36 100644
--- a/doc/source/apt_inst.rst
+++ b/doc/source/apt_inst.rst
@@ -15,7 +15,7 @@ Checking packages
:class:`file()` object, a file descriptor, or anything implementing a
:meth:`fileno` method.
- .. versionchanged:: 0.7.11
+ .. versionchanged:: 0.8.0
Added support for file descriptors and objects implementing a :meth:`fileno` method.
@@ -34,7 +34,7 @@ Listing contents
See :ref:`emulating-dpkg-contents` for a more detailed example.
- .. versionchanged:: 0.7.11
+ .. versionchanged:: 0.8.0
Added support for file descriptors and objects implementing a :meth:`fileno` method.
.. function:: tarExtract(file,func,comp)
@@ -47,7 +47,7 @@ Listing contents
The parameter *file* may be a :class:`file()` object, a file descriptor, or
anything implementing a :meth:`fileno` method.
- .. versionchanged:: 0.7.11
+ .. versionchanged:: 0.8.0
Added support for file descriptors and objects implementing a :meth:`fileno` method.
@@ -81,7 +81,7 @@ Extracting contents
If the directory given by *rootdir* does not exist, the package is
extracted into the current directory.
- .. versionchanged:: 0.7.11
+ .. versionchanged:: 0.8.0
Added support for file descriptors and objects implementing a :meth:`fileno` method.
.. function:: debExtractControl(file[, member='control'])
@@ -97,7 +97,7 @@ Extracting contents
print debExtractControl(open("package.deb"))
- .. versionchanged:: 0.7.11
+ .. versionchanged:: 0.8.0
Added support for file descriptors and objects implementing a :meth:`fileno` method.