summaryrefslogtreecommitdiff
path: root/webob/headers.py
Commit message (Collapse)AuthorAgeFilesLines
* give up on trying to encode header values when request.headers is usedChris McDonough2012-01-281-7/+7
|
* fix EnvironHeaders class to do encoding and decoding properlyChris McDonough2012-01-261-7/+7
|
* use paren-importsChris McDonough2011-09-221-2/+4
|
* sort imports and more direct importsChris McDonough2011-09-221-2/+2
|
* trim compat down to only necessary components; more direct imports; 100% ↵Chris McDonough2011-09-211-2/+2
| | | | test coverage for compat on py2
* use a 'normal' MultiDict for both GET and POST instead of a ↵Chris McDonough2011-09-161-0/+7
| | | | UnicodeMultiDict; try to beat down some more test failures.
* work on items/keys/values, better conversions, syntax errorsChris McDonough2011-09-151-2/+3
|
* work towards creating and using 'compat' module and removing syntax errors ↵Chris McDonough2011-09-151-4/+5
| | | | when code is run under py3k; all tests pass under py2, but most tests still fail under py3k
* webob requires python 2.4+ since 418:5621426aecc0, drop compat modules and ↵Sergey Schetinin2010-10-011-1/+1
| | | | use decorators where appropriate
* drop webob.headers.normalize_header, just use .lower()Sergey Schetinin2010-08-111-21/+16
|
* style tweaksSergey Schetinin2010-08-111-7/+1
|
* simplify ResponseHeaders.mixed, .dict_of_listsSergey Schetinin2010-08-111-21/+9
|
* drop ResponseHeaders.normalizeSergey Schetinin2010-08-111-26/+18
|
* * merge headersdict and datastruct modules into new module webob.headersSergey Schetinin2010-08-111-0/+178
* rename HeadersDict to ResponseHeaders * merge updatedict module into cachecontrol * merge webob.util.reversed and webob.compat modules into webob.util.__init__ * make DictMixin, reversed and sorted importable directly from webob.util