From: Zac Medico Date: Tue, 2 Mar 2010 20:32:09 +0000 (-0000) Subject: Remove the deprecated 'clone' parameter to the binarytree constructor. X-Git-Tag: v2.1.8~120 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5337b7b1716baba5afdab6a49df653a0ea1bfbec;p=portage.git Remove the deprecated 'clone' parameter to the binarytree constructor. (trunk r15375) svn path=/main/branches/2.1.7/; revision=15602 --- diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py index 3062e4bfe..f3b7b00de 100644 --- a/pym/portage/dbapi/bintree.py +++ b/pym/portage/dbapi/bintree.py @@ -150,20 +150,8 @@ class bindbapi(fakedbapi): class binarytree(object): "this tree scans for a list of all packages available in PKGDIR" - def __init__(self, root, pkgdir, virtual=None, settings=None, clone=None): - if clone: - writemsg("binartree.__init__(): deprecated " + \ - "use of clone parameter\n", noiselevel=-1) - # XXX This isn't cloning. It's an instance of the same thing. - self.root = clone.root - self.pkgdir = clone.pkgdir - self.dbapi = clone.dbapi - self.populated = clone.populated - self.tree = clone.tree - self.remotepkgs = clone.remotepkgs - self.invalids = clone.invalids - self.settings = clone.settings - else: + def __init__(self, root, pkgdir, virtual=None, settings=None): + if True: self.root = root #self.pkgdir=settings["PKGDIR"] self.pkgdir = normalize_path(pkgdir)