portage.git
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 Arfrever Frehtes... Use imp.reload() instead of reload() for compatibility...
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 MedicoAvoid unicode errors in python 3. Thanks to Arfrever...
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 "TypeError: object of type 'filter' has no len()".
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 MedicoReplace doct.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.
2009-09-20 Zac MedicoFix depgraph._validate_blockers() so that it doesn...
2009-09-20 Zac MedicoAdd fallback in ImportError for io.StringIO. This is...
2009-09-20 Zac MedicoAdd support in ConsoleStyleFile.write() for unicode...
2009-09-20 Zac MedicoMisc unicode fixes for repoman.
2009-09-20 Zac MedicoUse _unicode_encode() to ensure that only unicode strin...
2009-09-20 Zac MedicoMake Atom inherit from str. Thanks to Marat Radchenko
2009-09-20 Zac MedicoMake _unicode_module_wrapper cache wrappers and reuse...
2009-09-20 Zac MedicoIn doebuild_environment(), detect if setcpv() hasn...
next