summaryrefslogtreecommitdiff
path: root/paste
Commit message (Expand)AuthorAgeFilesLines
* Fix httpheaders on Python 3Victor Stinner2015-04-211-13/+25
* Revert changeset 9f19797dffaa to fix test_registryVictor Stinner2015-04-211-11/+4
* Fix evalexception middleware on Python 3Victor Stinner2015-04-211-1/+6
* Port cgiapp to Python 3Victor Stinner2015-04-211-14/+17
* Port wsgilib to Python 3Victor Stinner2015-04-211-10/+14
* Port paste.lint to Python 3Victor Stinner2015-04-211-6/+6
* Port multidict to Python 3Victor Stinner2015-04-211-7/+32
* Port recursive to Python 3Victor Stinner2015-04-211-4/+4
* Port datetimeutil to Python 3Victor Stinner2015-04-211-9/+8
* Fix WSGIResponse on Python 3Victor Stinner2015-04-211-2/+3
* Port paste.auth to Python 3Victor Stinner2015-04-212-11/+35
* Fix HTTPException.make_body() on Python 3Victor Stinner2015-04-211-3/+4
* Fix paste.request on Python 3Victor Stinner2015-04-211-2/+5
* Port session to Python 3Victor Stinner2015-04-211-1/+4
* Fix best_match() and desired_matches() on py3Victor Stinner2015-04-211-2/+2
* Convert files from file format DOS to UNIXVictor Stinner2015-04-212-2463/+2463
* Strip trailing spacesVictor Stinner2015-04-2137-185/+185
* Python 3: fix more submodulesVictor Stinner2014-03-1917-56/+55
* Python 3: fix paste.httpserverVictor Stinner2014-03-191-25/+27
* URLMap: add missing abstract __len__ and __iter__ methodsVictor Stinner2014-03-181-0/+7
* Copy the dictionary of global variables to be able to iterate over it andVictor Stinner2014-03-182-3/+4
* Python 3: Replace types.ClassType with six.class_typesCyril Roelandt2014-03-181-2/+2
* Python 3: Replace <> operator with != operatorCyril Roelandt2014-03-182-4/+4
* Python 3: Replace string functions with str methodsCyril Roelandt2014-03-181-13/+13
* Python 3: fix sortCyril Roelandt2014-03-182-3/+4
* Python 3: Replace "type(obj) is types.DictType" with "isinstance(obj, dict)"Cyril Roelandt2014-03-181-7/+6
* Python 3: Replace "for ... in dict.items()" with "for ... in six.iteritems(di...Cyril Roelandt2014-03-183-13/+15
* Python 3: Replace types.ClassType with six.class_typesCyril Roelandt2014-03-181-2/+1
* Python 3: Replace "for name, value in dict.items()" with "for name, value in ...Cyril Roelandt2014-03-181-1/+1
* Python 3: Use six types for stringsCyril Roelandt2014-03-1810-29/+42
* Python 3: Replace ord() with six.byte2int()Cyril Roelandt2014-03-181-1/+1
* Python 3: Replace unicode with six.text_type and str with six.binary_typeCyril Roelandt2014-03-181-2/+2
* Python 3: Use an explicit floor divisionCyril Roelandt2014-03-181-1/+1
* Python 3: replace (int, long) with six.integer_typesCyril Roelandt2014-03-181-1/+3
* Python 3: adjust import for email module, new path works with Python 2 and Py...Cyril Roelandt2014-03-181-2/+2
* Python 3: Add __next__() alias to next() methodCyril Roelandt2014-03-182-0/+3
* Python 3: use new style of raise, replace "raise class, args" with "raise cla...Cyril Roelandt2014-03-185-14/+13
* Python 3: Replace iterator.next() with six.next(iterator)Cyril Roelandt2014-03-182-2/+4
* Python 3: Use absolute import instead of relative importCyril Roelandt2014-03-183-3/+3
* Python 3: Replace exec statement with six.exec_() to support Python 2 and Pyt...Cyril Roelandt2014-03-181-1/+2
* Python 3: use six.reraise() to re-raise an exception with the tracebackCyril Roelandt2014-03-187-11/+18
* Python 3: add parenthesis to print() to support Python 2 and Python 3Cyril Roelandt2014-03-186-43/+48
* Python 3: Add b prefix to literal binary stringsCyril Roelandt2014-03-181-1/+1
* Python 3: Replace "dict.has_key(key)" with "key in dict"Cyril Roelandt2014-03-187-11/+11
* Python 3: Replace basestring with six.string_typesCyril Roelandt2014-03-186-8/+12
* Python 3: don't use tuples in function prototypeCyril Roelandt2014-03-183-3/+6
* Python 3: Replace "except Exception, exc" with "except Exception as exc:"Cyril Roelandt2014-03-1814-23/+23
* Python 3: use new names of standard library modulesCyril Roelandt2014-03-1829-93/+133
* Merged in bisque/paste (pull request #11)Ian Bicking2013-04-102-3/+4
|\
| * respond with 206 partial content whenever a range was requestedJan-Wijbrand Kolman2013-03-251-3/+3