Commit message (Expand) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | | * | Port intset to Python 3 | Victor Stinner | 2015-04-22 | 1 | -16/+20 | |
| | | * | Fix cgitb_catcher on Python 3 | Victor Stinner | 2015-04-22 | 2 | -2/+9 | |
| | | * | Port gzipper to Python 3 | Victor Stinner | 2015-04-22 | 2 | -8/+7 | |
| | | * | Port errormiddleware to Python 3 | Victor Stinner | 2015-04-21 | 1 | -2/+10 | |
| | | * | Fix html_unquote() on Python 3 | Victor Stinner | 2015-04-21 | 1 | -5/+11 | |
| | | * | Fix httpheaders on Python 3 | Victor Stinner | 2015-04-21 | 1 | -13/+25 | |
| | | * | Revert changeset 9f19797dffaa to fix test_registry | Victor Stinner | 2015-04-21 | 1 | -11/+4 | |
| | | * | Fix evalexception middleware on Python 3 | Victor Stinner | 2015-04-21 | 1 | -1/+6 | |
| | | * | Fix test_cgiapp on Python 3 | Victor Stinner | 2015-04-21 | 5 | -20/+19 | |
| | | * | Port cgiapp to Python 3 | Victor Stinner | 2015-04-21 | 1 | -14/+17 | |
| | | * | Port wsgilib to Python 3 | Victor Stinner | 2015-04-21 | 1 | -10/+14 | |
| | | * | Port paste.lint to Python 3 | Victor Stinner | 2015-04-21 | 1 | -6/+6 | |
| | | * | Port multidict to Python 3 | Victor Stinner | 2015-04-21 | 2 | -49/+76 | |
| | | * | Port recursive to Python 3 | Victor Stinner | 2015-04-21 | 2 | -6/+6 | |
| | | * | Fix test_registry on Python 3 | Victor Stinner | 2015-04-21 | 1 | -9/+27 | |
| | | * | Fix test_request_form on Python 3 | Victor Stinner | 2015-04-21 | 1 | -3/+3 | |
| | | * | Port datetimeutil to Python 3 | Victor Stinner | 2015-04-21 | 1 | -9/+8 | |
| | | * | Fix WSGIResponse on Python 3 | Victor Stinner | 2015-04-21 | 2 | -11/+13 | |
| | | * | Fix request, session and urlmap tests on Python 3 | Victor Stinner | 2015-04-21 | 3 | -13/+25 | |
| | | * | Port paste.auth to Python 3 | Victor Stinner | 2015-04-21 | 4 | -14/+46 | |
| | | * | Fix urlparser tests on Python 3 | Victor Stinner | 2015-04-21 | 8 | -19/+30 | |
| | | * | Fix HTTPException.make_body() on Python 3 | Victor Stinner | 2015-04-21 | 1 | -3/+4 | |
| | | * | Fix paste.request on Python 3 | Victor Stinner | 2015-04-21 | 1 | -2/+5 | |
| | | * | Port session to Python 3 | Victor Stinner | 2015-04-21 | 1 | -1/+4 | |
| | | * | Fix best_match() and desired_matches() on py3 | Victor Stinner | 2015-04-21 | 1 | -2/+2 | |
| | | * | Convert files from file format DOS to UNIX | Victor Stinner | 2015-04-21 | 4 | -2835/+2835 | |
| | | * | Strip trailing spaces | Victor Stinner | 2015-04-21 | 52 | -225/+225 | |
| | | * | Python 3: fix more submodules | Victor Stinner | 2014-03-19 | 17 | -56/+55 | |
| | | * | Python 3: fix paste.httpserver | Victor Stinner | 2014-03-19 | 1 | -25/+27 | |
| | | * | update more urls | Victor Stinner | 2014-03-18 | 1 | -2/+2 | |
| | | * | Update WebOb and PEP 333 URLs | Victor Stinner | 2014-03-18 | 1 | -7/+7 | |
| | | * | Update URL of external projects | Victor Stinner | 2014-03-18 | 2 | -8/+9 | |
| | | * | Fix typo in the URL of the issue tracker | Victor Stinner | 2014-03-18 | 1 | -1/+1 | |
| | | * | Update news.txt | Victor Stinner | 2014-03-18 | 1 | -0/+6 | |
| | | * | setup.py: paste now supports Python 3 ;-) | Victor Stinner | 2014-03-18 | 1 | -0/+1 | |
| | | * | URLMap: add missing abstract __len__ and __iter__ methods | Victor Stinner | 2014-03-18 | 1 | -0/+7 | |
| | | * | Copy the dictionary of global variables to be able to iterate over it and | Victor Stinner | 2014-03-18 | 2 | -3/+4 | |
| | | * | Python 3: convert dict.keys() result to list to get the first item | Cyril Roelandt | 2014-03-18 | 1 | -2/+2 | |
| | | * | Python 3: load xrange from six.moves | Cyril Roelandt | 2014-03-18 | 1 | -1/+2 | |
| | | * | Python 3: Add six dependency in setup.py | Cyril Roelandt | 2014-03-18 | 1 | -0/+1 | |
| | | * | Python 3: Replace types.ClassType with six.class_types | Cyril Roelandt | 2014-03-18 | 1 | -2/+2 | |
| | | * | Python 3: Replace <> operator with != operator | Cyril Roelandt | 2014-03-18 | 2 | -4/+4 | |
| | | * | Python 3: Replace string functions with str methods | Cyril Roelandt | 2014-03-18 | 1 | -13/+13 | |
| | | * | Python 3: fix sort | Cyril Roelandt | 2014-03-18 | 2 | -3/+4 | |
| | | * | Python 3: Replace "type(obj) is types.DictType" with "isinstance(obj, dict)" | Cyril Roelandt | 2014-03-18 | 1 | -7/+6 | |
| | | * | Python 3: Replace "for ... in dict.items()" with "for ... in six.iteritems(di... | Cyril Roelandt | 2014-03-18 | 4 | -15/+17 | |
| | | * | Python 3: Replace types.ClassType with six.class_types | Cyril Roelandt | 2014-03-18 | 1 | -2/+1 | |
| | | * | Python 3: Replace "for name, value in dict.items()" with "for name, value in ... | Cyril Roelandt | 2014-03-18 | 1 | -1/+1 | |
| | | * | Python 3: Use six types for strings | Cyril Roelandt | 2014-03-18 | 11 | -37/+51 | |
| | | * | Python 3: Replace ord() with six.byte2int() | Cyril Roelandt | 2014-03-18 | 1 | -1/+1 |