Package conary :: Module conarycfg :: Class RepoMap
[hide private]
[frames] | no frames]

Class RepoMap

source code

object --+        
         |        
      list --+    
             |    
ServerGlobList --+
                 |
                RepoMap

Instance Methods [hide private]
 
__setitem__(self, key, val)
x[i]=y
source code
 
__getitem__(self, key)
x[y]
source code
 
has_key(self, key) source code
 
__contains__(self, key)
y in x
source code
 
clear(self) source code
 
update(self, other) source code
 
iteritems(self) source code
 
items(self) source code
 
keys(self) source code
 
iterkeys(self) source code
 
values(self) source code
 
itervalues(self) source code
 
get(self, key, default) source code
 
__init__(self, repoMap=[])
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code

Inherited from ServerGlobList: append, extend, extendSort, find

Inherited from ServerGlobList (private): _fncmp

Inherited from list: __add__, __delitem__, __delslice__, __eq__, __ge__, __getattribute__, __getslice__, __gt__, __hash__, __iadd__, __imul__, __iter__, __le__, __len__, __lt__, __mul__, __ne__, __new__, __repr__, __reversed__, __rmul__, __setslice__, count, index, insert, pop, remove, reverse, sort

Inherited from object: __delattr__, __reduce__, __reduce_ex__, __setattr__, __str__

Class Variables [hide private]

Inherited from ServerGlobList: multipleMatches

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__setitem__(self, key, val)
(Index assignment operator)

source code 
x[i]=y
Overrides: list.__setitem__
(inherited documentation)

__getitem__(self, key)
(Indexing operator)

source code 
x[y]
Overrides: list.__getitem__
(inherited documentation)

__contains__(self, key)
(In operator)

source code 
y in x
Overrides: list.__contains__
(inherited documentation)

__init__(self, repoMap=[])
(Constructor)

source code 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Returns:
new list

Overrides: list.__init__
(inherited documentation)