| Commit message (Expand) | Author | Age | Files | Lines |
* | Don't wrap os.statvfs since it requires unicode string args in py3k. | Zac Medico | 2009-09-21 | 1 | -0/+1 |
* | Fix sorted() keyword arg for py3k. | Zac Medico | 2009-09-21 | 1 | -1/+2 |
* | Encode/decode names from the xpak index where appropriate. | Zac Medico | 2009-09-21 | 1 | -0/+4 |
* | In _unicode_func_wrapper, only encode keyword argument values, and not the | Zac Medico | 2009-09-21 | 1 | -2/+1 |
* | Fix PORTAGE_WORKDIR_MODE parsing code so it doesn't store python's octal | Zac Medico | 2009-09-21 | 1 | -1/+1 |
* | Make find_binary() use os.environ.get instead of os.getenv, since os.getenv | Zac Medico | 2009-09-21 | 1 | -2/+1 |
* | Don't encode the env in py3k since it expects strings for the env that's | Zac Medico | 2009-09-21 | 1 | -13/+9 |
* | Temporarily disable use of pty in py3k since it triggers an unresolved | Zac Medico | 2009-09-21 | 1 | -0/+4 |
* | Fix decodeint() for py3k compat, since bytes are a sequence of integers | Zac Medico | 2009-09-21 | 1 | -5/+8 |
* | Use input() instead of raw_input() when Python 3 is used. | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 1 | -1/+4 |
* | Decode database name passed to portage.cache.sqlite.database._db_module.conne... | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 1 | -2/+2 |
* | Use next(iterator) instead of iterator.next() for compatibility with Python 3. | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 7 | -13/+13 |
* | Decode all keys in dictionary containing environment passed to os.execve() in... | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 1 | -1/+7 |
* | 'filtered_auxdbkeys' should be a list to allow sorting. | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 1 | -1/+1 |
* | Define long as int when Python 3 is used. | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 22 | -0/+60 |
* | Support bytes in portage.util.normalize_path() with Python 3. | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 1 | -2/+7 |
* | Fix portage._unicode_func_wrapper.__call__() to properly handle bytes with Py... | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 1 | -2/+2 |
* | Fix dep_expand so that it doesn't use deprecated dep_getcpv() usage | Zac Medico | 2009-09-21 | 1 | -12/+22 |
* | Fix infinite recursion in items and values methods. | Zac Medico | 2009-09-21 | 1 | -1/+1 |
* | Fix infinite recursion in items and values methods. | Zac Medico | 2009-09-21 | 1 | -4/+4 |
* | Use dict.(keys|values|items)() instead of dict.(iterkeys|itervalues|iteritems... | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 59 | -240/+240 |
* | Fix case for 0 args in args unicode conversion. | Zac Medico | 2009-09-21 | 1 | -1/+2 |
* | Simplify match_to_list(). Thanks to Marat Radchenko <marat@slonopotamus.org> | Zac Medico | 2009-09-21 | 1 | -8/+1 |
* | Show deprecation warnings when dep_* legacy code is triggered. | Zac Medico | 2009-09-21 | 1 | -1/+10 |
* | Fix breakage in _unicode_encode() for non-string types. | Zac Medico | 2009-09-21 | 1 | -1/+4 |
* | Deprecate key_expand and portage.dbapi.porttree.portagetree.resolve_specific | Zac Medico | 2009-09-21 | 2 | -0/+7 |
* | Support both Python 2 and 3 in portage._unicode_encode() and portage._unicode... | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 4 | -10/+9 |
* | Use dep_expand instead of key_expand in the blocker display, since it seems | Zac Medico | 2009-09-21 | 1 | -3/+3 |
* | Make key_expand() always return Atom type. | Zac Medico | 2009-09-21 | 1 | -2/+4 |
* | Add deprecation warnings to vartree.exists_specific_cat(), getnode(), and | Zac Medico | 2009-09-21 | 1 | -0/+10 |
* | Use range() instead of xrange() for compatibility with Python 3. | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 19 | -30/+30 |
* | Define basestring as str when Python 3 is used. | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 21 | -0/+74 |
* | Fix all remaining SyntaxErrors with Python 3. | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 6 | -11/+14 |
* | Use filter() and zip() instead of itertools.ifilter() and itertools.izip() fo... | Arfrever Frehtes Taifersar Arahesis | 2009-09-21 | 17 | -49/+37 |
* | Make Atom.__init__ call the base class constructor, though it doesn't seem | Zac Medico | 2009-09-21 | 1 | -0/+2 |
* | When generating config.prevmaskdict, only call the Atom constructor when | Zac Medico | 2009-09-21 | 1 | -1/+3 |
* | Fix AtomArg constructor calls to pass in Atom instances, so the constructor | Zac Medico | 2009-09-21 | 2 | -23/+19 |
* | Tread blockers as invalid. | Zac Medico | 2009-09-21 | 1 | -1/+1 |
* | Fix redundant Atom construtor call in _show_unsatisfied_dep(). | Zac Medico | 2009-09-21 | 1 | -1/+0 |
* | Remove virtuals from the cache because they're unused since portage-2.1.6 | Zac Medico | 2009-09-20 | 1 | -4/+0 |
* | Fix typos in http.client imports. | Zac Medico | 2009-09-20 | 1 | -6/+6 |
* | Fix typo from previous commit. | Zac Medico | 2009-09-20 | 1 | -1/+1 |
* | Fix depgraph._validate_blockers() so that it doesn't do prohibited Atom(Atom) | Zac Medico | 2009-09-20 | 1 | -5/+4 |
* | Add fallback in ImportError for io.StringIO. This is needed for python-2.6 | Zac Medico | 2009-09-20 | 2 | -2/+14 |
* | Add support in ConsoleStyleFile.write() for unicode encoding when writing to | Zac Medico | 2009-09-20 | 1 | -5/+15 |
* | Misc unicode fixes for repoman. | Zac Medico | 2009-09-20 | 2 | -7/+17 |
* | Use _unicode_encode() to ensure that only unicode strings are passed into | Zac Medico | 2009-09-20 | 2 | -14/+22 |
* | Make Atom inherit from str. Thanks to Marat Radchenko | Zac Medico | 2009-09-20 | 1 | -79/+24 |
* | Make _unicode_module_wrapper cache wrappers and reuse them. Thanks to | Zac Medico | 2009-09-20 | 1 | -2/+14 |
* | In doebuild_environment(), detect if setcpv() hasn't been called properly, | Zac Medico | 2009-09-20 | 1 | -3/+9 |