summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Use explicit imports instead of *.Zac Medico2009-09-272-2/+2
* Use mkdtemp() instead of hardcoded pym/portage/tests/bin/root directory.Zac Medico2009-09-271-16/+26
* Bug #286522 - Check all portdbapi.findname return values in case itZac Medico2009-09-261-4/+7
* Bug #286475 - Fix KeyValuePairFileLoader.lineParser() so it doesn't raiseZac Medico2009-09-261-4/+1
* Revert r14430 and fix to do as intended. Thanks to Arfrever for reporting.v2.2_rc42Zac Medico2009-09-261-2/+4
* Make sure self._allowed_keys are sorted in the table create statement. TheyZac Medico2009-09-251-1/+1
* Remove ugly code from __len__, since defining __bool__ fixes the sameZac Medico2009-09-251-9/+1
* Define __bool__() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-253-3/+14
* Remove unused imports.Zac Medico2009-09-252-4/+0
* Fix length calculation so it doesn't assume the length of the encodedZac Medico2009-09-251-3/+4
* Add a test case for this issue: http://bugs.python.org/issue5334Zac Medico2009-09-252-1/+45
* Use 'in' instead of has_key() in portage.glsa.Glsa.parse() when Python 3 is u...Arfrever Frehtes Taifersar Arahesis2009-09-251-1/+2
* Use list comprehensions instead of filter() or map() in some places for compa...Arfrever Frehtes Taifersar Arahesis2009-09-254-4/+5
* Fix more.Zac Medico2009-09-251-1/+1
* Fix ValueError in digestcheck(), reported by Arfrever.Zac Medico2009-09-251-1/+2
* Remove unnecessary dict.has_key() call (fix for python 3).Zac Medico2009-09-251-2/+0
* Show an appropriate error message in _create_pty_or_pipe() if openpty()Zac Medico2009-09-242-15/+16
* Fix regression in _getitem() from r14398, since myf.read().split("\n")Zac Medico2009-09-241-1/+4
* Add a test case for http://bugs.python.org/issue5380 and mark it as 'todo'Zac Medico2009-09-241-0/+22
* Make _test_pty_eof() return None if openpty() fails.Zac Medico2009-09-241-1/+5
* Use a runtime check to see if http://bugs.python.org/issue5380 is fixed.Zac Medico2009-09-241-5/+62
* Use dict.__iter__ instead of keys(), since it behaves identically in pythonZac Medico2009-09-241-2/+2
* Fix previous commit.Zac Medico2009-09-241-2/+2
* Warn if cpv_getkey() is given invalid input that triggers legacy code.Zac Medico2009-09-241-0/+4
* Decode directory names where appropriate in digestcheck(). Thanks toZac Medico2009-09-241-0/+14
* Misc performance enhancements. Thanks to Marat RadchenkoZac Medico2009-09-243-22/+13
* Fix test case for recent changes.Zac Medico2009-09-241-1/+1
* Bug #286118 - Fix dbapi.move_ent() methods so they don't assume Atom instancesZac Medico2009-09-232-15/+16
* Bug #285979 - Replace references to CDEPEND with UNUSED_00, to make it clearZac Medico2009-09-233-3/+3
* Optimize vardbapi.getpath(). Thanks to Marat RadchenkoZac Medico2009-09-231-3/+8
* 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
* Fix stack_dicts() to always return a dict.Zac Medico2009-09-221-3/+1
* Don't pass the ignore_none parameter to stack_dicts() since it does nothingZac Medico2009-09-221-1/+1
* Clean up stack_dicts() a little.Zac Medico2009-09-221-6/+5
* Disable the ignore_none parameter for stack_dicts() since having it returnZac Medico2009-09-221-5/+2
* Replace dict.keys() usage with __iter__(), since it behaves identically inZac Medico2009-09-227-19/+18
* Replace dict.keys() usage with __iter__(), since it behaves identically inZac Medico2009-09-227-13/+13
* Remove code that's been commented out.Zac Medico2009-09-221-18/+0
* Replace dict.keys() usage with __iter__(), since it behaves identically inZac Medico2009-09-222-7/+7
* Fix for python 3.x compatibility.Zac Medico2009-09-221-5/+13
* Replace dict.keys() usage with __iter__(), since it behaves identically inZac Medico2009-09-221-11/+11
* Do manual unicode handling (instead of using the wrapped os module) inZac Medico2009-09-221-12/+26
* For python 3.x with boolean target, len() results in TypeError, soZac Medico2009-09-221-1/+9
* Optimize unicode wrappers. Thanks to Marat Radchenko <marat@slonopotamus.org>Zac Medico2009-09-221-28/+30
* Fix another potential 'RuntimeError: dictionary changed size during iteration'Zac Medico2009-09-221-1/+1
* Fix 'iteritems' attribute detection to look for 'items' instead.Zac Medico2009-09-221-1/+1
* Fix 'RuntimeError: dictionary changed size during iteration' inZac Medico2009-09-221-1/+1
* Remove redundant list() since starred expressions work with iterators.Zac Medico2009-09-221-1/+1
* Fix items to prevent infinite recursion.Zac Medico2009-09-221-1/+1