| Age | Commit message (Collapse) | Author |
|
|
|
|
|
In Python 3, \w matches any Unicode character.
|
|
|
|
|
|
Thanks thecore for the report.
|
|
|
|
|
|
Complementary to commit 62a9ed0ac.
|
|
explicitly closed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
In some cases (notably Python 3), when handle_uncaught_exception was
itself raising an exception, the got_request_exception was storing
the latter exception instead of the original exception.
|
|
|
|
and there are no warnings about unclosed files
|
|
|
|
|
|
This fixes a deprecation warning under Python 3.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
In Python 3 dividing by int will call obj.__truediv__(). This operator
was missing from F-expressions.
|
|
Also changed several occurrences of 'request' to 'response'.
|
|
This is more idiomatic and avoids returning a list on Python 2 and
an iterator on Python 3.
|
|
when computing the length of a dictionary. This fails on Python 3.
|
|
|
|
|
|
In Python 3, HTMLParser does not support bytestrings.
|
|
Perfomed some style cleanup while I was in the area.
|
|
This reverts commit b109ff8062f4bb225181ec462d69c9dd79339567 and
complement test cases. The change was too hasty, as some form
values cannot be json-serialized as is.
|
|
|
|
|
|
Refs #18340
|
|
|
|
|