summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-07-28 01:05:28 +0000
committerZac Medico <zmedico@gentoo.org>2008-07-28 01:05:28 +0000
commit6b96ba70a98478b00a6f50337970a6c3136d665f (patch)
treee9b93e4592004fe0c83e5485de1838ea64da06db
parent6d00d8a1d996dd062aed767138bf6291c8f4ab01 (diff)
downloadportage-6b96ba70a98478b00a6f50337970a6c3136d665f.tar.gz
portage-6b96ba70a98478b00a6f50337970a6c3136d665f.tar.bz2
portage-6b96ba70a98478b00a6f50337970a6c3136d665f.zip
Bug #233137 - Implement Atom.split().
svn path=/main/trunk/; revision=11228
-rw-r--r--pym/portage/dep.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/dep.py b/pym/portage/dep.py
index c2f506d4b..737c009a9 100644
--- a/pym/portage/dep.py
+++ b/pym/portage/dep.py
@@ -416,7 +416,8 @@ class Atom(object):
_atoms = weakref.WeakValueDictionary()
_str_methods = ("endswith", "find", "index", "lstrip", "replace",
- "startswith", "strip", "rindex", "rfind", "rstrip", "__getitem__",
+ "startswith", "split", "strip",
+ "rindex", "rfind", "rstrip", "__getitem__",
"__eq__", "__hash__", "__len__", "__ne__", "__repr__", "__str__")
__slots__ = ("__weakref__", "blocker", "cp", "cpv", "operator",