Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | parse_set_cookie header returns an empty list if no cookies are found | Aldo Cortesi | 2016-09-28 | 1 | -3/+3 |
| | | | | This matches parse_cookie, and is more idiomatic. | ||||
* | Add tests for comma separated Set-Cookies | Shadab Zafar | 2016-09-27 | 1 | -10/+47 |
| | |||||
* | Make needed changes in tests | Shadab Zafar | 2016-09-27 | 1 | -30/+33 |
| | |||||
* | Update cookie tests | Shadab Zafar | 2016-09-27 | 1 | -91/+84 |
| | | | | | This is needed since _read_pairs now returns a list of cookies each of which is a list of [name, value] tuples. | ||||
* | Use test times less than 2038 | Shadab Zafar | 2016-08-15 | 1 | -3/+3 |
| | | | | So that tests pass on 32bit systems too | ||||
* | Assert cookie groups explicitly rather than just the length | Shadab Zafar | 2016-08-15 | 1 | -16/+40 |
| | |||||
* | Add some cookie formatting related tests | Shadab Zafar | 2016-08-15 | 1 | -3/+3 |
| | |||||
* | Add a function to get cookie expiration time | Shadab Zafar | 2016-08-15 | 1 | -0/+20 |
| | |||||
* | Add method to group pairs by cookies | Shadab Zafar | 2016-08-15 | 1 | -0/+20 |
| | |||||
* | Test cookies.is_expired separately | Shadab Zafar | 2016-07-10 | 1 | -0/+21 |
| | |||||
* | more style cleanup | Thomas Kriechbaumer | 2016-05-29 | 1 | -1/+1 |
| | |||||
* | improve MultiDict, add ImmutableMultiDict, adjust response.cookies | Maximilian Hils | 2016-05-18 | 1 | -5/+9 |
| | |||||
* | add MultiDict | Maximilian Hils | 2016-05-18 | 1 | -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. | ||||
* | improve cookie parsing | Thomas Kriechbaumer | 2016-05-10 | 1 | -2/+11 |
| | | | | | allows '/' to be within a cookie name removes deprecated cookie getter/setter fixes #1118 | ||||
* | move HTTPResponse.refresh into netlib | Maximilian Hils | 2016-04-02 | 1 | -0/+16 |
| | |||||
* | move tests into shared folder | Maximilian Hils | 2016-02-15 | 1 | -0/+218 |