diff options
| author | Ian Cordasco <graffatcolmingov@gmail.com> | 2012-09-02 23:09:43 -0400 |
|---|---|---|
| committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2012-09-02 23:10:28 -0400 |
| commit | 8081d7b15cf893435c19ea1c0d5e4392a60fe18f (patch) | |
| tree | 7ad48e01815c150dc991522de75f6e391ed88055 /requests/structures.py | |
| parent | c8f166f696327dc8ec07a248863fcc35fafa2038 (diff) | |
| download | python-requests-8081d7b15cf893435c19ea1c0d5e4392a60fe18f.tar.gz | |
Fixes #817.
Use dicts and lists where necessary but accept both dicts and lists of
2-tuples everywhere.
Diffstat (limited to 'requests/structures.py')
| -rw-r--r-- | requests/structures.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/requests/structures.py b/requests/structures.py index 7969c7e0..3fda9843 100644 --- a/requests/structures.py +++ b/requests/structures.py @@ -8,6 +8,7 @@ Data structures that power Requests. """ + class CaseInsensitiveDict(dict): """Case-insensitive Dictionary |
