Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cleanup imports with flake8 | Thomas Kriechbaumer | 2016-05-28 | 1 | -1/+0 |
| | |||||
* | Fix crash in mitmproxy when viewing responses | Aldo Cortesi | 2016-05-28 | 1 | -1/+3 |
| | |||||
* | Merge branch 'issue-1099' | Maximilian Hils | 2016-05-20 | 1 | -0/+3 |
|\ | |||||
| * | fix #1099 | Maximilian Hils | 2016-05-20 | 1 | -0/+3 |
| | | |||||
* | | A clearer implementation of MultiDictView | Aldo Cortesi | 2016-05-21 | 1 | -9/+40 |
|/ | | | | | | This makes MultiDictView work with a simple getter/setter pair, rather than using attributes with implicit leading underscores. Also move MultiDictView into multidict.py and adds some simple unit tests. | ||||
* | tests++ | Maximilian Hils | 2016-05-20 | 1 | -3/+11 |
| | |||||
* | improve MultiDict, add ImmutableMultiDict, adjust response.cookies | Maximilian Hils | 2016-05-18 | 1 | -163/+240 |
| | |||||
* | add MultiDict | Maximilian Hils | 2016-05-18 | 1 | -0/+163 |
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. |