summaryrefslogtreecommitdiff
path: root/doc
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
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')
-rw-r--r--doc/source/apt_inst.rst10
-rw-r--r--doc/source/apt_pkg/cache.rst8
-rw-r--r--doc/source/apt_pkg/index.rst8
3 files changed, 13 insertions, 13 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.
diff --git a/doc/source/apt_pkg/cache.rst b/doc/source/apt_pkg/cache.rst
index 86515569..a58f1356 100644
--- a/doc/source/apt_pkg/cache.rst
+++ b/doc/source/apt_pkg/cache.rst
@@ -121,7 +121,7 @@ Classes in apt_pkg
Return ``True`` if *conf* has a key *key*, else ``False``.
- .. versionadded:: 0.7.11
+ .. versionadded:: 0.8.0
.. describe:: conf[key]
@@ -207,7 +207,7 @@ Classes in apt_pkg
Return whether the configuration contains the key *key*.
- .. deprecated:: 0.7.11
+ .. deprecated:: 0.8.0
.. method:: get(key[, default=''])
@@ -1211,7 +1211,7 @@ broken dependencies:
Return ``True`` if *section* has a key *key*, else ``False``.
- .. versionadded:: 0.7.11
+ .. versionadded:: 0.8.0
.. method:: Bytes
@@ -1236,7 +1236,7 @@ broken dependencies:
Check whether the field with named by *key* exists.
- .. deprecated:: 0.7.11
+ .. deprecated:: 0.8.0
.. method:: keys()
diff --git a/doc/source/apt_pkg/index.rst b/doc/source/apt_pkg/index.rst
index 60c3ba9b..47923c23 100644
--- a/doc/source/apt_pkg/index.rst
+++ b/doc/source/apt_pkg/index.rst
@@ -166,7 +166,7 @@ of the ones provides in Python's :mod:`hashlib` module.
object (or a file descriptor), in which case the md5sum of its contents is
returned.
- .. versionchanged:: 0.7.11
+ .. versionchanged:: 0.8.0
Added support for using file descriptors.
.. function:: sha1sum(object)
@@ -176,7 +176,7 @@ of the ones provides in Python's :mod:`hashlib` module.
object (or a file descriptor), in which case the sha1sum of its contents
is returned.
- .. versionchanged:: 0.7.11
+ .. versionchanged:: 0.8.0
Added support for using file descriptors.
.. function:: sha256sum(object)
@@ -186,7 +186,7 @@ of the ones provides in Python's :mod:`hashlib` module.
object (or a file descriptor), in which case the sha256sum of its contents
is returned.
- .. versionchanged:: 0.7.11
+ .. versionchanged:: 0.8.0
Added support for using file descriptors.
Debian control files
@@ -202,7 +202,7 @@ Debian control files
be a :class:`file()` object, a file descriptor, or anything providing a
:meth:`fileno()` method.
- .. versionchanged:: 0.7.11
+ .. versionchanged:: 0.8.0
Added support for using file descriptors.
.. autofunction:: RewriteSection(section, order, rewrite_list)