portage/dbapi/bintree.py: Remove deprecated parameter
authorSebastian Luther <SebastianLuther@gmx.de>
Wed, 11 Aug 2010 07:13:39 +0000 (09:13 +0200)
committerZac Medico <zmedico@gentoo.org>
Wed, 11 Aug 2010 07:51:27 +0000 (00:51 -0700)
pym/portage/dbapi/bintree.py

index 7dd179ce9747744633638041134cbcfe19cad9e4..130e30d7d815fddc0912b0529e961e1a75b7863b 100644 (file)
@@ -35,7 +35,6 @@ import errno
 import re
 import stat
 import sys
-import warnings
 from itertools import chain
 
 if sys.hexversion >= 0x3000000:
@@ -274,21 +273,6 @@ class binarytree(object):
                                chain(*self._pkgindex_translated_keys)
                        ))
 
-       def _get_remotepkgs(self):
-               warnings.warn("Use binarytree._remotepkgs insead of binarytree.remotepkgs",
-                       DeprecationWarning)
-               return self.__remotepkgs
-
-       def _set_remotepkgs(self, remotepkgs):
-               warnings.warn("Use binarytree._remotepkgs insead of binarytree.remotepkgs",
-                       DeprecationWarning)
-               self.__remotepkgs = remotepkgs
-
-       def _del_remotepkgs(self):
-               warnings.warn("Use binarytree._remotepkgs insead of binarytree.remotepkgs",
-                       DeprecationWarning)
-               del self.__remotepkgs
-
        remotepkgs = property(_get_remotepkgs, _set_remotepkgs, _del_remotepkgs,
                "Deprecated self.remotepkgs, only for backward compatibility")
 
@@ -504,15 +488,9 @@ class binarytree(object):
                _movefile(src_path, dest_path, mysettings=self.settings)
                self._pkg_paths[cpv] = mypath
 
-       def populate(self, getbinpkgs=0, getbinpkgsonly=None):
+       def populate(self, getbinpkgs=0):
                "populates the binarytree"
 
-               if getbinpkgsonly is not None:
-                       warnings.warn(
-                               "portage.dbapi.bintree.binarytree.populate(): " + \
-                               "getbinpkgsonly parameter is deprecated",
-                               DeprecationWarning, stacklevel=2)
-
                if self._populating:
                        return
                from portage.locks import lockfile, unlockfile