summaryrefslogtreecommitdiffstats
path: root/pym/cache/flat_hash.py
Commit message (Expand)AuthorAgeFilesLines
* Implement iterkeys on top of __iter__ instead of vice versa. Thanks to Brian...Zac Medico2007-06-221-1/+1
* Ignore non-existent directories for bug #171809. This is required for readon...Zac Medico2007-03-231-1/+9
* When an unprivileged user runs portage (not in the portage group), use metada...Zac Medico2006-12-221-1/+1
* Reverse the relationship between __contains__ and has_key in all cache classe...Zac Medico2006-10-261-1/+1
* Enable recognition of _mtime_ that doesn't rely on cache mtime mangling.Zac Medico2006-10-241-1/+4
* Catch a ValueError caused by corrupt cache for bug #149134.Zac Medico2006-09-281-1/+5
* Move the open call out of the inner try block.Zac Medico2006-09-221-4/+2
* Use finally: to ensure that the file is closed properly.Zac Medico2006-09-221-8/+9
* Improve and simplify __getitem__ error handling.Zac Medico2006-09-221-14/+8
* Use fstat to when retrieve cache timestamps and avoid a race.Zac Medico2006-09-221-13/+3
* Convert stat timestamps to long for compatibility with python-2.5, which retu...Zac Medico2006-09-221-1/+2
* Replace relative imports with absolute imports for forward compatibility with...Zac Medico2006-09-181-4/+4
* make elog mail module always set the 'From' header for rfc2822 complianceMarius Mauch2006-06-101-1/+1
* Use iteritems() instead of items() because an iterator uses less memory.Zac Medico2006-05-141-1/+1
* Write raw bytes instead of attempting to encode as utf-8 for bug #133287.Zac Medico2006-05-141-1/+1
* Properly encode metadata strings as utf-8 in order to avoid "UnicodeEncodeErr...Zac Medico2006-05-071-1/+1
* Replace inappropriate use of writelines with normal write.Zac Medico2006-05-071-1/+1
* Prevent an IOError with errno != ENOENT from being swallowed in flat_hash._se...Zac Medico2006-03-181-5/+5
* Replace hard coded number 2 in cache modules with errno.ENOENT.Zac Medico2006-03-181-3/+3
* Only write known keys in flat_hash cache entries (filter out UNUSED_* keys).Zac Medico2006-02-261-1/+1
* replacement cache subsystem that's gestated in 2.1 and 3.0.Brian Harring2005-11-051-0/+129