* [gentoo-commits] portage r15674 - main/branches/2.1.7/pym/portage/dbapi
@ 2010-03-02 21:01 Zac Medico (zmedico)
0 siblings, 0 replies; only message in thread
From: Zac Medico (zmedico) @ 2010-03-02 21:01 UTC (permalink / raw
To: gentoo-commits
Author: zmedico
Date: 2010-03-02 21:01:41 +0000 (Tue, 02 Mar 2010)
New Revision: 15674
Modified:
main/branches/2.1.7/pym/portage/dbapi/__init__.py
Log:
Avoid name collision with dep_expand submodule so epydoc won't crash.
(trunk r15465)
Modified: main/branches/2.1.7/pym/portage/dbapi/__init__.py
===================================================================
--- main/branches/2.1.7/pym/portage/dbapi/__init__.py 2010-03-02 21:01:30 UTC (rev 15673)
+++ main/branches/2.1.7/pym/portage/dbapi/__init__.py 2010-03-02 21:01:41 UTC (rev 15674)
@@ -8,7 +8,7 @@
import portage
portage.proxy.lazyimport.lazyimport(globals(),
- 'portage.dbapi.dep_expand:dep_expand',
+ 'portage.dbapi.dep_expand:_dep_expand',
'portage.dep:match_from_list',
'portage.locks:unlockfile',
'portage.output:colorize',
@@ -122,7 +122,7 @@
Returns:
a list of packages that match origdep
"""
- mydep = dep_expand(origdep, mydb=self, settings=self.settings)
+ mydep = _dep_expand(origdep, mydb=self, settings=self.settings)
return list(self._iter_match(mydep,
self.cp_list(mydep.cp, use_cache=use_cache)))
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-03-02 21:01 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-02 21:01 [gentoo-commits] portage r15674 - main/branches/2.1.7/pym/portage/dbapi Zac Medico (zmedico)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox