summaryrefslogtreecommitdiffstats
path: root/pym/portage/cache/mappings.py
Commit message (Expand)AuthorAgeFilesLines
* OrderedDict: fix setitem bug #436974Zac Medico2012-10-021-3/+3
* Replace @returns with @return.Zac Medico2012-03-271-1/+1
* portage/cache/mappings.py: Remove deprecated functionsSebastian Luther2010-08-111-25/+0
* Implement SlotDict.__repr__() to behave like dict.Zac Medico2010-06-041-0/+3
* Remove all svn $Id keywords.Zac Medico2010-03-241-1/+0
* Define __slots__ in all classes.Zac Medico2010-01-301-0/+8
* Add OrderedDict class.Zac Medico2009-12-081-0/+26
* Use dict.__iter__ instead of keys(), since it behaves identically in pythonZac Medico2009-09-241-2/+2
* Optimize SlotDict.iteritems() a little.Zac Medico2009-09-221-1/+2
* Make SlotDict use call self.iteritems() where appropriate since it implementsZac Medico2009-09-221-5/+5
* Replace dict.keys() usage with __iter__(), since it behaves identically inZac Medico2009-09-221-2/+2
* Use next(iterator) instead of iterator.next() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-211-2/+2
* Fix infinite recursion in items and values methods.Zac Medico2009-09-211-4/+4
* Use dict.(keys|values|items)() instead of dict.(iterkeys|itervalues|iteritems...Arfrever Frehtes Taifersar Arahesis2009-09-211-17/+17
* Initialize UserDict.data in the constructor.Zac Medico2009-03-101-0/+2
* Make the first argument of update() methods be an optional positional argumentZac Medico2009-03-051-2/+16
* Make the UserDict and LazyItemsDict constructors use an optional positionalZac Medico2009-02-211-4/+10
* Fix update() methods to work with python-3.0.Zac Medico2009-02-191-8/+24
* Fix classes that implement __iter__() to copy it to their keys() methodZac Medico2009-02-191-0/+9
* Implement UserDict.__contains__() and __iter__().Zac Medico2009-02-191-0/+6
* Implement a substitute for UserDict.UserDict so that code converted viaZac Medico2009-02-191-2/+38
* In python-3.0, the UserDict.DictMixin class has been replaced byZac Medico2009-02-191-23/+123
* For python-3.0 compatibility, make dict-like classes modify their keys(),Zac Medico2009-02-041-0/+14
* Optimize `emaint` --fix binhost so that it the Packages file isn't re-readZac Medico2008-08-011-0/+3
* Fix arg count when constructing a TypeError in the SlotDict constructor.Zac Medico2008-07-281-1/+1
* Create a SlotDict constructor which can take an optional positional arg thatZac Medico2008-07-281-0/+13
* Py3k compatibility patch #6 by Ali Polatel <hawking@g.o>.Zac Medico2008-07-011-1/+10
* Add a "prefix" keyword parameter to slot_dict_class() which controls theZac Medico2008-07-011-10/+14
* Make PackageIndex use SlotDict for package metadata storage. The set ofZac Medico2008-06-261-5/+6
* Fix typo.Zac Medico2008-06-251-1/+1
* Add docstring to slot_dict_class().Zac Medico2008-06-251-0/+11
* Fix typo.Zac Medico2008-06-251-1/+1
* Fix KeyError constructor style.Zac Medico2008-06-251-1/+1
* Fix indentation.Zac Medico2008-06-251-1/+1
* Add a generic portage.cache.mappings.slot_dict_class() function whichZac Medico2008-06-251-0/+126
* Namespace sanitizing, step 1Marius Mauch2007-01-251-0/+103