Make _test_pty_eof() use non-blocking IO, required for Darwin kernel.
[portage.git] / pym /
2009-09-27 Zac MedicoMake _test_pty_eof() use non-blocking IO, required...
2009-09-27 Zac MedicoUse catsplit() instead of a regex to generate dbapi...
2009-09-27 Zac MedicoFix binTestsInit() to use correct values for PORTAGE_BI...
2009-09-27 Zac MedicoUse explicit imports instead of *.
2009-09-27 Zac MedicoUse mkdtemp() instead of hardcoded pym/portage/tests...
2009-09-26 Zac MedicoBug #286522 - Check all portdbapi.findname return value...
2009-09-26 Zac MedicoBug #286475 - Fix KeyValuePairFileLoader.lineParser...
2009-09-26 Zac MedicoRevert r14430 and fix to do as intended. Thanks to... v2.2_rc42
2009-09-25 Zac MedicoBug #285767 - Add support to to identify and eliminate...
2009-09-25 Zac MedicoFix UnboundLocalError triggered by atom without categor...
2009-09-25 Zac MedicoMake sure self._allowed_keys are sorted in the table...
2009-09-25 Arfrever Frehtes... Fix formatting of sizes with Python 3.
2009-09-25 Zac MedicoRemove ugly code from __len__, since defining __bool__...
2009-09-25 Arfrever Frehtes... Define __bool__() for compatibility with Python 3.
2009-09-25 Zac MedicoRemove unused imports.
2009-09-25 Zac MedicoFix length calculation so it doesn't assume the length...
2009-09-25 Zac MedicoAdd a test case for this issue: bugs.python.org/issue5334
2009-09-25 Arfrever Frehtes... Use 'in' instead of has_key() in portage.glsa.Glsa...
2009-09-25 Arfrever Frehtes... Use list comprehensions instead of filter() or map...
2009-09-25 Zac MedicoFix more.
2009-09-25 Zac MedicoFix ValueError in digestcheck(), reported by Arfrever.
2009-09-25 Zac MedicoRemove unnecessary dict.has_key() call (fix for python 3).
2009-09-24 Zac MedicoShow an appropriate error message in _create_pty_or_pip...
2009-09-24 Zac MedicoFix regression in _getitem() from r14398, since myf...
2009-09-24 Zac MedicoAdd a test case for bugs.python.org/issue5380 and mark...
2009-09-24 Zac MedicoMake _test_pty_eof() return None if openpty() fails.
2009-09-24 Zac MedicoUse a runtime check to see if bugs.python.org/issue5380...
2009-09-24 Zac MedicoUse dict.__iter__ instead of keys(), since it behaves...
2009-09-24 Zac MedicoFix previous commit.
2009-09-24 Zac MedicoWarn if cpv_getkey() is given invalid input that trigge...
2009-09-24 Zac MedicoDecode directory names where appropriate in digestcheck...
2009-09-24 Zac MedicoMisc performance enhancements. Thanks to Marat Radchenko
2009-09-24 Zac MedicoFix test case for recent changes.
2009-09-23 Zac MedicoBug #286118 - Fix dbapi.move_ent() methods so they...
2009-09-23 Arfrever Frehtes... Fix formatting of size of downloads with Python 3.
2009-09-23 Zac MedicoBug #285979 - Replace references to CDEPEND with UNUSED...
2009-09-23 Zac MedicoOptimize vardbapi.getpath(). Thanks to Marat Radchenko
2009-09-22 Zac MedicoOptimize SlotDict.iteritems() a little.
2009-09-22 Zac MedicoMake SlotDict use call self.iteritems() where appropria...
2009-09-22 Zac MedicoFix stack_dicts() to always return a dict.
2009-09-22 Zac MedicoDon't pass the ignore_none parameter to stack_dicts...
2009-09-22 Zac MedicoClean up stack_dicts() a little.
2009-09-22 Zac MedicoDisable the ignore_none parameter for stack_dicts(...
2009-09-22 Zac MedicoReplace dict.keys() usage with __iter__(), since it...
2009-09-22 Zac MedicoReplace dict.keys() usage with __iter__(), since it...
2009-09-22 Zac MedicoRemove code that's been commented out.
2009-09-22 Zac MedicoReplace dict.keys() usage with __iter__(), since it...
2009-09-22 Zac MedicoFix for python 3.x compatibility.
2009-09-22 Zac MedicoReplace dict.keys() usage with __iter__(), since it...
2009-09-22 Zac MedicoDo manual unicode handling (instead of using the wrappe...
2009-09-22 Zac MedicoFor python 3.x with boolean target, len() results in...
2009-09-22 Zac MedicoOptimize unicode wrappers. Thanks to Marat Radchenko...
2009-09-22 Zac MedicoFix another potential 'RuntimeError: dictionary changed...
2009-09-22 Zac MedicoFix 'iteritems' attribute detection to look for 'items...
2009-09-22 Zac MedicoFix 'RuntimeError: dictionary changed size during itera...
2009-09-22 Zac MedicoRemove redundant list() since starred expressions work...
2009-09-22 Zac MedicoFix items to prevent infinite recursion.
2009-09-21 Zac MedicoFix 'RuntimeError: dictionary changed size during itera...
2009-09-21 Zac MedicoDon't wrap os.statvfs since it requires unicode string...
2009-09-21 Zac MedicoFix sorted() keyword arg for py3k.
2009-09-21 Zac MedicoEncode/decode names from the xpak index where appropriate.
2009-09-21 Zac MedicoIn _unicode_func_wrapper, only encode keyword argument...
2009-09-21 Zac MedicoFix PORTAGE_WORKDIR_MODE parsing code so it doesn't...
2009-09-21 Zac MedicoMake find_binary() use os.environ.get instead of os...
2009-09-21 Zac MedicoDon't encode the env in py3k since it expects strings...
2009-09-21 Zac MedicoTemporarily disable use of pty in py3k since it trigger...
2009-09-21 Zac MedicoFix decodeint() for py3k compat, since bytes are a...
2009-09-21 Arfrever Frehtes... Use input() instead of raw_input() when Python 3 is...
2009-09-21 Arfrever Frehtes... Decode database name passed to portage.cache.sqlite...
2009-09-21 Arfrever Frehtes... Use next(iterator) instead of iterator.next() for compa...
2009-09-21 Arfrever Frehtes... Decode all keys in dictionary containing environment...
2009-09-21 Arfrever Frehtes... 'filtered_auxdbkeys' should be a list to allow sorting.
2009-09-21 Arfrever Frehtes... Define long as int when Python 3 is used.
2009-09-21 Arfrever Frehtes... Support bytes in portage.util.normalize_path() with...
2009-09-21 Arfrever Frehtes... Fix portage._unicode_func_wrapper.__call__() to properl...
2009-09-21 Zac MedicoFix dep_expand so that it doesn't use deprecated dep_ge...
2009-09-21 Zac MedicoFix infinite recursion in items and values methods.
2009-09-21 Zac MedicoFix infinite recursion in items and values methods.
2009-09-21 Arfrever Frehtes... Use dict.(keys|values|items)() instead of dict.(iterkey...
2009-09-21 Zac MedicoFix case for 0 args in args unicode conversion.
2009-09-21 Zac MedicoSimplify match_to_list(). Thanks to Marat Radchenko...
2009-09-21 Zac MedicoShow deprecation warnings when dep_* legacy code is...
2009-09-21 Zac MedicoFix breakage in _unicode_encode() for non-string types.
2009-09-21 Zac MedicoDeprecate key_expand and portage.dbapi.porttree.portage...
2009-09-21 Arfrever Frehtes... Support both Python 2 and 3 in portage._unicode_encode...
2009-09-21 Zac MedicoUse dep_expand instead of key_expand in the blocker...
2009-09-21 Zac MedicoMake key_expand() always return Atom type.
2009-09-21 Zac MedicoAdd deprecation warnings to vartree.exists_specific_cat...
2009-09-21 Arfrever Frehtes... Use range() instead of xrange() for compatibility with...
2009-09-21 Arfrever Frehtes... Define basestring as str when Python 3 is used.
2009-09-21 Arfrever Frehtes... Fix all remaining SyntaxErrors with Python 3.
2009-09-21 Arfrever Frehtes... Use filter() and zip() instead of itertools.ifilter...
2009-09-21 Zac MedicoMake Atom.__init__ call the base class constructor...
2009-09-21 Zac MedicoWhen generating config.prevmaskdict, only call the...
2009-09-21 Zac MedicoFix AtomArg constructor calls to pass in Atom instances...
2009-09-21 Zac MedicoTread blockers as invalid.
2009-09-21 Zac MedicoFix redundant Atom construtor call in _show_unsatisfied...
2009-09-20 Zac MedicoRemove virtuals from the cache because they're unused...
2009-09-20 Zac MedicoFix typos in http.client imports.
2009-09-20 Zac MedicoFix typo from previous commit.
next