[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#626617: marked as done (python-apt: rm usage of camelcase in cache.py doc)



Your message dated Thu, 01 Dec 2011 13:38:09 +0000
with message-id <E1RW6q1-0002mr-3Z@franck.debian.org>
and subject line Bug#626617: fixed in python-apt 0.8.2
has caused the Debian Bug report #626617,
regarding python-apt: rm usage of camelcase in cache.py doc
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
626617: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626617
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: python-apt
Version: 0.8.0~exp4
Severity: wishlist
Tags: patch

please find attached
=== modified file 'apt/cache.py'
--- apt/cache.py	2011-05-13 18:17:44 +0000
+++ apt/cache.py	2011-05-13 18:59:06 +0000
@@ -506,7 +506,7 @@
         self._callbacks[name].append(callback)
 
     def actiongroup(self):
-        """Return an ActionGroup() object for the current cache.
+        """Return an action group object for the current cache.
 
         Action groups can be used to speedup actions. The action group is
         active as soon as it is created, and disabled when the object is
@@ -519,7 +519,7 @@
                 for package in my_selected_packages:
                     package.mark_install()
 
-        This way, the ActionGroup is automatically released as soon as the
+        This way, the action group is automatically released as soon as the
         with statement block is left. It also has the benefit of making it
         clear which parts of the code run with a action group and which
         don't.


--- End Message ---
--- Begin Message ---
Source: python-apt
Source-Version: 0.8.2

We believe that the bug you reported is fixed in the latest version of
python-apt, which is due to be installed in the Debian FTP archive:

python-apt-common_0.8.2_all.deb
  to main/p/python-apt/python-apt-common_0.8.2_all.deb
python-apt-dbg_0.8.2_amd64.deb
  to main/p/python-apt/python-apt-dbg_0.8.2_amd64.deb
python-apt-dev_0.8.2_all.deb
  to main/p/python-apt/python-apt-dev_0.8.2_all.deb
python-apt-doc_0.8.2_all.deb
  to main/p/python-apt/python-apt-doc_0.8.2_all.deb
python-apt_0.8.2.dsc
  to main/p/python-apt/python-apt_0.8.2.dsc
python-apt_0.8.2.tar.gz
  to main/p/python-apt/python-apt_0.8.2.tar.gz
python-apt_0.8.2_amd64.deb
  to main/p/python-apt/python-apt_0.8.2_amd64.deb
python3-apt-dbg_0.8.2_amd64.deb
  to main/p/python-apt/python3-apt-dbg_0.8.2_amd64.deb
python3-apt_0.8.2_amd64.deb
  to main/p/python-apt/python3-apt_0.8.2_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 626617@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Vogt <mvo@debian.org> (supplier of updated python-apt package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Thu, 01 Dec 2011 14:14:42 +0100
Source: python-apt
Binary: python-apt python-apt-doc python-apt-dbg python-apt-dev python-apt-common python3-apt python3-apt-dbg
Architecture: source amd64 all
Version: 0.8.2
Distribution: unstable
Urgency: low
Maintainer: APT Development Team <deity@lists.debian.org>
Changed-By: Michael Vogt <mvo@debian.org>
Description: 
 python-apt - Python interface to libapt-pkg
 python-apt-common - Python interface to libapt-pkg (locales)
 python-apt-dbg - Python interface to libapt-pkg (debug extension)
 python-apt-dev - Python interface to libapt-pkg (development files)
 python-apt-doc - Python interface to libapt-pkg (API documentation)
 python3-apt - Python 3 interface to libapt-pkg
 python3-apt-dbg - Python 3 interface to libapt-pkg (debug extension)
Closes: 624379 626610 626617 628398 631309 638308
Changes: 
 python-apt (0.8.2) unstable; urgency=low
 .
   [ Michael Vogt ]
   * merged from ubuntu:
     - use logging instead of print
     - update distro template Ubuntu.info.in
     - add xz compression support
   * po/python-apt.pot:
     - refreshed
   * po/pt_BR.po:
     - updated, thanks to Sergio Cipolla (closes: #628398)
   * po/da.po:
     - updated, thanks to Joe Dalton (closes: #631309)
   * po/sr.po:
     - updated, thanks to Nikola Nenadic (closes: #638308)
   * python/apt_pkgmodule.cc:
     - add apt_pkg.get_architectures() call
   * apt/cache.py:
     - remove "print" when creating dirs in apt.Cache(rootdir=dir),
       thanks to Martin Pitt
     - add __lt__ to apt.Package so that sort() sorts by name
       on list of package objects
   * debian/control:
     - add recommends to xz-lzma to ensure we have the unlzma command
   * apt/cache.py:
     - set Dir::bin::dpkg if a alternate rootdir is given
       (LP: #885895)
   * build fixes for the apt in experimental
   * apt/debfile.py:
     - raise error when accessing require_changes and
       missing_deps without calling check() before, thanks to
       Tshepang Lekhonkhobe (closes: #624379)
   * apt/package.py:
     - add new "suggests" property, thanks to Christop Groth
     - allow Dependency object to be iteratable, this allows to write
       code like:
       for or_dep_group in pkg.candidate.dependencies:
           for dep in or_dep_group:
               do_something()
       (thanks to Christop Groth)
   * apt/progress/base.py:
     - write exception text to stderr to avoid hidding exceptions
       like "pre-configure failed" from libapt (thanks to Jean-Baptiste
       Lallement)
 .
   [ Tshepang Lekhonkhobe ]
   * rm usage of camelcase in cache.py doc (closes: #626617)
   * grammar fix in the cache.py doc (closes: #626610)
 .
   [ Nikola Pavlović ]
   * fixed a typo, changed "Open Source software" to
     "free and open-source software"  (LP: #500940)
Checksums-Sha1: 
 7688c9c7b1dc574bdd80b9726b6f97c9a0848309 1549 python-apt_0.8.2.dsc
 6eb7accebe6f4f83e4815c7005dce68cfc250a3e 356099 python-apt_0.8.2.tar.gz
 050b313142ca0795f62fb63de047a6a2c8e5ded5 309788 python-apt_0.8.2_amd64.deb
 0c53541b076b9ddfc7b03e4dbfe93b66ddc383a6 228034 python-apt-doc_0.8.2_all.deb
 e80fbde15ec0b460835b2f02df64aa02e3aca7e8 4127202 python-apt-dbg_0.8.2_amd64.deb
 ba001d3eacfc8dda2a1011a30aafaa4223339b10 7620 python-apt-dev_0.8.2_all.deb
 e9961459119b9bf6b02639340688934206faf758 94616 python-apt-common_0.8.2_all.deb
 c5183650680239261f6df0c20e09b484599a818b 190294 python3-apt_0.8.2_amd64.deb
 b1efadbb890b0bdc4a6021cf4fb6a03d0ac485db 2058348 python3-apt-dbg_0.8.2_amd64.deb
Checksums-Sha256: 
 4c2d73bc9e5838b22b936b2030fd7e7ded66a88097d8b509b3f145d32b82b6e4 1549 python-apt_0.8.2.dsc
 42ee508f45f8fe7a39da152d402da0af5748a7364a175ffb625bedd0e18b65c6 356099 python-apt_0.8.2.tar.gz
 5283756d131230422277cff633e96ef7c364b5523ede26ec182db580605d2ed7 309788 python-apt_0.8.2_amd64.deb
 8d4281921151a88a8a7d3b34dde4395c243f9c808638d8a572c8e0d9b871bcc6 228034 python-apt-doc_0.8.2_all.deb
 e258d3039eff7b75c10574a82622a766d34d3e2f2d3daefead51a44f0d1e69e3 4127202 python-apt-dbg_0.8.2_amd64.deb
 b4ab4a273c08029055000e9c5f276b95529eb84959ce2776571a656149758cbd 7620 python-apt-dev_0.8.2_all.deb
 d07e1095ed41d1230feb63d4058fc2609d87030d9122d7b4a7a96838141f558b 94616 python-apt-common_0.8.2_all.deb
 9ec314adb3e606f872c59ef5008447f991fc93a4df675b234dba3948188df4f4 190294 python3-apt_0.8.2_amd64.deb
 b47c4602e4f3d5af0ea901eaa210773af0bb0ae0cb28ccc2dc4923f4e5c0ae6b 2058348 python3-apt-dbg_0.8.2_amd64.deb
Files: 
 5a8b04e89539c4f95577d5ca5aee81a0 1549 python standard python-apt_0.8.2.dsc
 b1abee9d295e1672387bd0226df67d0f 356099 python standard python-apt_0.8.2.tar.gz
 c323db1148f2f0c85c45b7175eee5160 309788 python standard python-apt_0.8.2_amd64.deb
 51d511ed8ecf76876f19b0e6fbe26e5c 228034 doc optional python-apt-doc_0.8.2_all.deb
 5db9176dd30e9669015a4bc988b0ddda 4127202 debug extra python-apt-dbg_0.8.2_amd64.deb
 453207ca76f1517388c08fc491f462e3 7620 python optional python-apt-dev_0.8.2_all.deb
 7de0e6bc541ee6ce7fed6912ec92fdb1 94616 python optional python-apt-common_0.8.2_all.deb
 07741400c30ecc6827f8ed960643a9ea 190294 python optional python3-apt_0.8.2_amd64.deb
 265a2b9dabe97e1294931bea4dd07a54 2058348 debug extra python3-apt-dbg_0.8.2_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk7XgDAACgkQliSD4VZixzRw0ACfTusDfoMCfL6WlmA+1hk7IUNr
MtQAn2rsruWy0Z9Qg7kVbsIxGB1zsNVi
=m1Xc
-----END PGP SIGNATURE-----



--- End Message ---

Reply to: