| I discovered that werkzeug stores cookies in lists, with its .get returning only the first item of the list. By converting the cookies to a plain dict, I was breaking that functionality of cookies.get. So, using werkzeug's MultiDict is the correct choice. | ||
|---|---|---|
| .. | ||
| endpoints | ||
| __init__.py | ||
| caching.py | ||
| common.py | ||
| decorators.py | ||
| helpers.py | ||
| jinja_filters.py | ||
| jsonify.py | ||
| sessions.py | ||