| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | | 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 |
| * | | Python 3: Replace unicode with six.text_type and str with six.binary_type | Cyril Roelandt | 2014-03-18 | 1 | -2/+2 |
| * | | Python 3: Use an explicit floor division | Cyril Roelandt | 2014-03-18 | 1 | -1/+1 |
| * | | Python 3: replace (int, long) with six.integer_types | Cyril Roelandt | 2014-03-18 | 1 | -1/+3 |
| * | | Python 3: adjust import for email module, new path works with Python 2 and Py... | Cyril Roelandt | 2014-03-18 | 1 | -2/+2 |
| * | | Python 3: Add __next__() alias to next() method | Cyril Roelandt | 2014-03-18 | 2 | -0/+3 |
| * | | Python 3: use new style of raise, replace "raise class, args" with "raise cla... | Cyril Roelandt | 2014-03-18 | 6 | -15/+14 |
| * | | Python 3: Replace iterator.next() with six.next(iterator) | Cyril Roelandt | 2014-03-18 | 2 | -2/+4 |
| * | | Python 3: Use absolute import instead of relative import | Cyril Roelandt | 2014-03-18 | 5 | -5/+5 |
| * | | Python 3: Replace exec statement with six.exec_() to support Python 2 and Pyt... | Cyril Roelandt | 2014-03-18 | 1 | -1/+2 |
| * | | Python 3: use six.reraise() to re-raise an exception with the traceback | Cyril Roelandt | 2014-03-18 | 7 | -11/+18 |
| * | | Python 3: add parenthesis to print() to support Python 2 and Python 3 | Cyril Roelandt | 2014-03-18 | 15 | -60/+65 |
| * | | Python 3: Add b prefix to literal binary strings | Cyril Roelandt | 2014-03-18 | 1 | -1/+1 |
| * | | Python 3: Replace "dict.has_key(key)" with "key in dict" | Cyril Roelandt | 2014-03-18 | 8 | -14/+14 |
| * | | Python 3: Replace basestring with six.string_types | Cyril Roelandt | 2014-03-18 | 6 | -8/+12 |
| * | | Python 3: don't use tuples in function prototype | Cyril Roelandt | 2014-03-18 | 3 | -3/+6 |
| * | | Python 3: Replace "except Exception, exc" with "except Exception as exc:" | Cyril Roelandt | 2014-03-18 | 16 | -26/+26 |
| * | | Python 3: use new names of standard library modules | Cyril Roelandt | 2014-03-18 | 35 | -104/+162 |
| * | | Merged in bisque/paste (pull request #11) | Ian Bicking | 2013-04-10 | 3 | -4/+5 |
| |\ \ |
|
| | * | | respond with 206 partial content whenever a range was requested | Jan-Wijbrand Kolman | 2013-03-25 | 1 | -3/+3 |
| | * | | Automated merge with ssh://bitbucket.org/ianb/paste | Ian Bicking | 2013-02-07 | 1 | -1/+1 |
| | |\ \ |
|
| | | * | | fix #5, trac link | Ian Bicking | 2013-02-07 | 1 | -1/+1 |
| | * | | | Merged in xcolour/paste/stringio (pull request #12) | Ian Bicking | 2013-01-31 | 0 | -0/+0 |
| | |\ \ \ |
|
| | * | | | | Import StringIO so it can be used.stringio | matt | 2013-01-28 | 1 | -0/+1 |
| | |/ / / |
|
| * | | | | Add bisque id | Kristian Kvilekval | 2012-10-12 | 1 | -0/+6 |
| * | | | | Don't penalize streaming applications | Kristian Kvilekval | 2012-10-12 | 1 | -4/+11 |
| * | | | | allow strings and lists to be used in cookie tokens | Kristian Kvilekval | 2012-10-12 | 1 | -1/+3 |
| |/ / / |
|
| * | | | Merged in mitchellrj/paste/double_slash_at_start_of_path_fix (pull request #10) | Ian Bicking | 2012-08-17 | 3 | -23/+77 |
| |\ \ \ |
|
| | * | | | auth/auth_tkt.py: enable overriding digest algorithms | Jan Pokorn? | 2012-03-05 | 1 | -8/+22 |
| | |/ / |
|
| | * | | auth/auth_tkt.py: enable overriding digest algorithms | Jan Pokorn? | 2012-03-01 | 1 | -14/+27 |
| | * | | Fix digest authentication (it was picking up commas inside of the digest auth... | Toshio Kuratomi | 2011-12-21 | 1 | -4/+29 |
| | * | | Add files that should be included in the tarball | Toshio Kuratomi | 2011-12-21 | 1 | -3/+5 |
| | |/ |
|
| * | | Fixed parsing of URL paths starting with multiple slashes.double_slash_at_start_of_path_fix | Richard Mitchell | 2012-08-02 | 2 | -1/+4 |
| * | | New branch for double-slash fix. | Richard Mitchell | 2012-08-02 | 0 | -0/+0 |
| |/ |
|
| * | add news for last commit | Ian Bicking | 2011-08-17 | 1 | -0/+7 |
| * | Automated merge with ssh://bitbucket.org/ianb/paste | Ian Bicking | 2011-08-17 | 1 | -2/+1 |
| |\ |
|
| | * | update link to official dev repo | Joshua Bronson | 2011-07-19 | 1 | -2/+1 |
| * | | Always wrap wsgi.input with LimitedLengthFile, even when using the ContinueHo... | Ian Bicking | 2011-08-17 | 1 | -9/+8 |
| |/ |
|
| * | Automated merge with https://bitbucket.org/milinnovations_andreas/paste/ | Ian Bicking | 2010-11-29 | 1 | -2/+2 |
| |\ |
|
| | * | Add fix to make digest auth with internet explorer 8 (and possibly other ver... | milinnovations_andreas | 2010-09-29 | 1 | -2/+2 |
| * | | remove old setup.cfg stuff | Ian Bicking | 2010-10-28 | 1 | -8/+0 |
| |/ |
|
| * | Fix #444, egg:Paste#cgi should work now | Ian Bicking | 2010-09-28 | 2 | -0/+6 |
| * | Added tag 1.7.5.1 for changeset 53a9cdc44dc0 | Ian Bicking | 2010-09-20 | 0 | -0/+0 |
| * | update versions for release1.7.5.1 | Ian Bicking | 2010-09-20 | 3 | -4/+4 |