aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http/http1/read.py
Commit message (Collapse)AuthorAgeFilesLines
* python3: clean up super and __future__Aldo Cortesi2016-10-171-1/+0
|
* fix-1366Thomas Kriechbaumer2016-07-161-3/+2
|
* Fix test that may fail due to binary header dataAldo Cortesi2016-06-051-1/+3
| | | | | | | | This is just inherently not a determinisitc test. We don't use the log HTTP interface any more, so it can just go. A more radical "solution" is inbound shortly. Fixes #1207
* Reorganise netlib imports according to Google Style GuideAldo Cortesi2016-06-011-37/+39
|
* netlib.utils.get_header_tokens -> netlib.http1.read.get_header_tokensAldo Cortesi2016-05-311-1/+13
| | | | Placing this next to its only use.
* Module is part of the name - url.decode, not url.urldecodeAldo Cortesi2016-05-311-1/+1
| | | | A pattern we need to use far more often in the codebase
* Extract url functions from netlib.utils and move to netlib.http.urlAldo Cortesi2016-05-311-1/+2
|
* add MultiDictMaximilian Hils2016-05-181-2/+2
| | | | | | | | This commit introduces MultiDict, a multi-dictionary similar to ODict, but with improved semantics (as in the Headers class). MultiDict fixes a few issues that were present in the Request/Response API. In particular, `request.cookies["foo"] = "bar"` has previously been a no-op, as the cookies property returned a mutable _copy_ of the cookies.
* combine projectsMaximilian Hils2016-02-181-0/+362