aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http/cookies.py
Commit message (Collapse)AuthorAgeFilesLines
* add MultiDictMaximilian Hils2016-05-181-6/+11
| | | | | | | | 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.
* replace SimpleCookie with our own parser libThomas Kriechbaumer2016-05-111-1/+1
|
* improve cookie parsingThomas Kriechbaumer2016-05-101-19/+20
| | | | | allows '/' to be within a cookie name removes deprecated cookie getter/setter fixes #1118
* move HTTPResponse.refresh into netlibMaximilian Hils2016-04-021-0/+34
|
* combine projectsMaximilian Hils2016-02-181-0/+193