summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Enable testing with pypytox_add_pypyMarc Abramowitz2016-03-072-3/+3
| | | | | | | | This involved: - Adding "pypy" to the `tox.ini` envlist. - Adding `# doctest: +IGNORE_EXCEPTION_DETAIL` to 2 doctests, because the traceback message text is slightly different on PyPy.
* Merged in msabramo/paste/tox_add_py35 (pull request #30)Marc Abramowitz2016-03-070-0/+0
|\ | | | | | | tox.ini: Add py35 to envlist
| * Merged in sphalerite/paste (pull request #26)Marc Abramowitz2016-03-071-1/+1
| |\ | | | | | | | | | Change six requirement to >=1.4.0
| | * Change six requirement to >=1.4.0Linus Heckemann2015-06-10230-0/+41410
| |
| * Merged in nilsph/paste/py3k (pull request #28)Marc Abramowitz2016-03-070-0/+0
| | | | | | | | Py3k fixes
| * Python 3: use compatible print syntax in example textpy3kNils Philippsen2015-11-121-2/+2
| |
| * Python 3: let html_quote() and url() always return the same typeNils Philippsen2015-11-121-4/+4
| | | | | | | | Mixing binary and text types causes errors later on.
| * Python 3: ignore exception details in doctestsNils Philippsen2015-09-101-1/+4
| | | | | | | | Exception details are formatted differently between Python 2 and 3.
| * Python 3: dict.items() doesn't return a list anymoreNils Philippsen2015-11-122-4/+3
| | | | | | | | | | Use sorted() instead, which works on lists as well as dict_items objects.
| * Python 3: avoid spurious warningsNils Philippsen2015-09-091-1/+1
| | | | | | | | | | The dict.has_keys() method doesn't exist anymore in python 3, check if the locals() object has a .keys() method instead.
| * Python 3: add workarounds for cgi.FieldStorageNils Philippsen2015-08-201-1/+58
| | | | | | | | | | | | | | cgi.FieldStorage keeps some keys as str, some as the repr() of the byte-encoded key, duh. Fixes (well...): tests.test_cgiapp.test_form
| * Python 3: Use the same python interpreter for CGI scripts.Nils Philippsen2015-08-201-0/+23
| | | | | | | | Fixes tests.test_cgiapp
| * Python 3: Don't mangle strangely encoded inputNils Philippsen2015-08-192-3/+11
| | | | | | | | | | | | | | | | In Python 3, cgi.FieldStorage needs to know about encodings like shiftjis in order to decode it properly (in Python 2 it's simply not decoded at all). Fixes tests.test_wsgiwrappers.test_wsgirequest_charset
| * Python 3: Always encode params if passed as text typesNils Philippsen2015-08-191-2/+2
| | | | | | | | Fixes tests.test_wsgiwrappers.test_wsgirequest_charset
| * Python 3: App must always return binary type.Nils Philippsen2015-08-19230-0/+41410
| | | | Fixes tests.test_wsgiwrappers.test_wsgirequest_charset
* tox.ini: Add py35 to envlisttox_add_py35Marc Abramowitz2016-03-07230-0/+41500