summaryrefslogtreecommitdiff
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* make tests pass after 2031Bernhard M. Wiedemann2018-02-211-1/+1
* Check paste.wsgilib.add_close._closedMarc Abramowitz2016-03-071-0/+2
* Add tests for `add_close` classMarc Abramowitz2016-03-071-0/+50
* Enable testing with pypytox_add_pypyMarc Abramowitz2016-03-071-2/+2
* Python 3: use compatible print syntax in example textpy3kNils Philippsen2015-11-121-2/+2
* Python 3: ignore exception details in doctestsNils Philippsen2015-09-101-1/+4
* Python 3: add workarounds for cgi.FieldStorageNils Philippsen2015-08-201-1/+58
* Python 3: Use the same python interpreter for CGI scripts.Nils Philippsen2015-08-201-0/+23
* Python 3: App must always return binary type.Nils Philippsen2015-08-191-1/+1
* test_wsgirequest_charset: Use UTF-8 instead of iso-8859-1test_wsgirequest_charset_use_UTF-8_instead_of_iso-8859-1Marc Abramowitz2015-04-301-3/+2
* tests/test_httpserver.py: Add test_environ_with_multiple_valuesMarc Abramowitz2015-04-281-0/+16
* tests/test_httpserver.py: Use `email` module instead of `mimetools`Marc Abramowitz2015-04-281-2/+2
* Add tests/test_httpserver.pyMarc Abramowitz2015-04-271-0/+29
* Revert change on paste.util.quoting.html_quote()Victor Stinner2015-04-231-2/+6
* Fix paste.util.html_quote(unicode): don't encode the string to escape itVictor Stinner2015-04-221-0/+24
* Cleanup imports in test_fileappVictor Stinner2015-04-221-12/+4
* Fix pyflakes warnings in testsVictor Stinner2015-04-228-18/+2
* Fix test_exceptions on Python 3Victor Stinner2015-04-223-14/+15
* Remove doctest24Victor Stinner2015-04-221-1/+1
* Update test_fileapp according to changeset b3f56e5b43e8Victor Stinner2015-04-211-2/+2
* Fix fileapp on Python 3Victor Stinner2015-04-221-21/+30
* Fix grantip on Python 3Victor Stinner2015-04-221-8/+11
* Fix test_config on Python 3Victor Stinner2015-04-221-26/+48
* Port test_errordocument on Python 3Victor Stinner2015-04-221-6/+6
* Fix cgitb_catcher on Python 3Victor Stinner2015-04-221-2/+5
* Port gzipper to Python 3Victor Stinner2015-04-221-5/+5
* Fix test_cgiapp on Python 3Victor Stinner2015-04-215-20/+19
* Port multidict to Python 3Victor Stinner2015-04-211-42/+44
* Port recursive to Python 3Victor Stinner2015-04-211-2/+2
* Fix test_registry on Python 3Victor Stinner2015-04-211-9/+27
* Fix test_request_form on Python 3Victor Stinner2015-04-211-3/+3
* Fix WSGIResponse on Python 3Victor Stinner2015-04-211-9/+10
* Fix request, session and urlmap tests on Python 3Victor Stinner2015-04-213-13/+25
* Port paste.auth to Python 3Victor Stinner2015-04-212-3/+11
* Fix urlparser tests on Python 3Victor Stinner2015-04-218-19/+30
* Convert files from file format DOS to UNIXVictor Stinner2015-04-212-372/+372
* Strip trailing spacesVictor Stinner2015-04-2115-40/+40
* Python 3: convert dict.keys() result to list to get the first itemCyril Roelandt2014-03-181-2/+2
* Python 3: load xrange from six.movesCyril Roelandt2014-03-181-1/+2
* Python 3: Replace "for ... in dict.items()" with "for ... in six.iteritems(di...Cyril Roelandt2014-03-181-2/+2
* Python 3: Use six types for stringsCyril Roelandt2014-03-181-8/+9
* Python 3: use new style of raise, replace "raise class, args" with "raise cla...Cyril Roelandt2014-03-181-1/+1
* Python 3: Use absolute import instead of relative importCyril Roelandt2014-03-182-2/+2
* Python 3: add parenthesis to print() to support Python 2 and Python 3Cyril Roelandt2014-03-189-17/+17
* Python 3: Replace "dict.has_key(key)" with "key in dict"Cyril Roelandt2014-03-181-3/+3
* Python 3: Replace "except Exception, exc" with "except Exception as exc:"Cyril Roelandt2014-03-182-3/+3
* Python 3: use new names of standard library modulesCyril Roelandt2014-03-186-11/+29
* Just a bit more paranoia in quoting comments, though I wasn't able to reprodu...Ian Bicking2010-09-141-0/+2
* Catch cookie errors when parsing cookies (http://trac.pythonpaste.org/pythonp...Ian Bicking2010-09-021-0/+2
* Improve errors when fetching an error page: http://trac.pythonpaste.org/pytho...Ian Bicking2010-09-021-5/+14