summaryrefslogtreecommitdiffstats
path: root/pym/portage/cache/anydbm.py
Commit message (Collapse)AuthorAgeFilesLines
* anydbm: use gdbm "u" flag for concurrent writersZac Medico2010-12-261-4/+30
| | | | This will fix bug #53607.
* Make portage.cache.anydbm use absolute_import instead of the thev2.2_rc77Zac Medico2010-09-061-3/+5
| | | | __import__() approach it currently uses.
* Remove all svn $Id keywords.Zac Medico2010-03-241-1/+0
|
* fix: python dbm module doesn't accept unicode as keyMounir Lamouri2010-01-301-2/+2
| | | | svn path=/main/trunk/; revision=15286
* Fix for python 3.x compatibility.Zac Medico2009-09-221-5/+13
| | | | svn path=/main/trunk/; revision=14381
* Use dict.(keys|values|items)() instead of ↵Arfrever Frehtes Taifersar Arahesis2009-09-211-2/+2
| | | | | | | | dict.(iterkeys|itervalues|iteritems)() for compatibility with Python 3. (2to3-3.1 -f dict -nw ${FILES}) svn path=/main/trunk/; revision=14327
* Update syntax of 'except' statements for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-201-2/+2
| | | | | | (2to3-3.1 -f except -nw ${FILES}) svn path=/main/trunk/; revision=14289
* Update imports to import portage.os (with unicode wrappers), and useZac Medico2009-08-111-4/+6
| | | | | | _unicode_encode() and _unicode_decode() where appropriate. svn path=/main/trunk/; revision=14002
* For python-3.0 compatibility, make dict-like classes modify their keys(),Zac Medico2009-02-041-0/+4
| | | | | | items(), and values() methods appropriatly for the current python version. svn path=/main/trunk/; revision=12584
* Implement iterkeys on top of __iter__ instead of vice versa. Thanks to ↵Zac Medico2007-06-211-1/+1
| | | | | | Brian Harring for the suggestion. svn path=/main/trunk/; revision=6918
* Namespace sanitizing, step 3Marius Mauch2007-01-251-2/+2
| | | | svn path=/main/trunk/; revision=5782
* Namespace sanitizing, step 1Marius Mauch2007-01-251-0/+72
svn path=/main/trunk/; revision=5778