summaryrefslogtreecommitdiffstats
path: root/pym/portage/dbapi/__init__.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-02-25 20:42:04 +0000
committerZac Medico <zmedico@gentoo.org>2010-02-25 20:42:04 +0000
commit727abd89a87db835906fb53e0455feb75ae323d8 (patch)
tree248a3ad8ae7d0123c1e5a3d103e91faa9c70395b /pym/portage/dbapi/__init__.py
parent9eb73c4553cb066ed210ab0ffec53028e25b6b09 (diff)
downloadportage-727abd89a87db835906fb53e0455feb75ae323d8.tar.gz
portage-727abd89a87db835906fb53e0455feb75ae323d8.tar.bz2
portage-727abd89a87db835906fb53e0455feb75ae323d8.zip
Move dep_expand and cpv_expand into portage.dbapi submodules.
svn path=/main/trunk/; revision=15460
Diffstat (limited to 'pym/portage/dbapi/__init__.py')
-rw-r--r--pym/portage/dbapi/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/dbapi/__init__.py b/pym/portage/dbapi/__init__.py
index c758491f1..dcd933f62 100644
--- a/pym/portage/dbapi/__init__.py
+++ b/pym/portage/dbapi/__init__.py
@@ -8,6 +8,7 @@ import re
import portage
portage.proxy.lazyimport.lazyimport(globals(),
+ 'portage.dbapi.dep_expand:dep_expand',
'portage.dep:match_from_list',
'portage.locks:unlockfile',
'portage.output:colorize',
@@ -16,7 +17,7 @@ portage.proxy.lazyimport.lazyimport(globals(),
)
from portage import os
-from portage import auxdbkeys, dep_expand
+from portage import auxdbkeys
from portage.localization import _
class dbapi(object):