| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
Mixing binary and text types causes errors later on.
|
|
|
|
| |
Exception details are formatted differently between Python 2 and 3.
|
|
|
|
|
| |
Use sorted() instead, which works on lists as well as dict_items
objects.
|
|
|
|
|
| |
The dict.has_keys() method doesn't exist anymore in python 3, check if
the locals() object has a .keys() method instead.
|
|
|
|
|
|
|
| |
cgi.FieldStorage keeps some keys as str, some as the repr() of the
byte-encoded key, duh.
Fixes (well...): tests.test_cgiapp.test_form
|
|
|
|
| |
Fixes tests.test_cgiapp
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Fixes tests.test_wsgiwrappers.test_wsgirequest_charset
|
|
Fixes tests.test_wsgiwrappers.test_wsgirequest_charset
|