Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Port multidict to Python 3 | Victor Stinner | 2015-04-21 | 1 | -7/+32 |
| | |||||
* | Python 3: Replace "for ... in dict.items()" with "for ... in ↵ | Cyril Roelandt | 2014-03-18 | 1 | -8/+9 |
| | | | | | | six.iteritems(dict)" Same change for itervalues(). | ||||
* | Python 3: use new style of raise, replace "raise class, args" with "raise ↵ | Cyril Roelandt | 2014-03-18 | 1 | -2/+2 |
| | | | | class(args)" | ||||
* | Python 3: use new names of standard library modules | Cyril Roelandt | 2014-03-18 | 1 | -1/+7 |
| | | | | Use "try/except ImportError" to try Python 2 and Python 3 names. | ||||
* | Fix up docstrings for reST validity | ianb | 2007-02-01 | 1 | -1/+1 |
| | |||||
* | ensure UnicodeMultiDict allows non basestring keys to pass through | pjenvey | 2007-01-31 | 1 | -1/+4 |
| | |||||
* | by default don't have WSGIRequest decode parameter keys when unicode params ↵ | pjenvey | 2007-01-22 | 1 | -19/+26 |
| | | | | | | are expected. allow this behavior when WSGIRequest.decode_param_names is enabled | ||||
* | o added UnicodeMultiDict, a MultiDict wrapper that decodes its retrieved | pjenvey | 2007-01-21 | 1 | -1/+160 |
| | | | | | | | | | | | | | contents to unicode on the fly. Any FieldStorages encountered are cloned with their name and filename fields decoded o Added WSGIRequest.charset and errors. When charset is set, WSGIRequest's params/GET/POST return UnicodeMultiDicts. charset and errors inherit their default values from the WSGIRequest.defaults StackedObjectProxy dict o deprecated wsgiwrappers.settings: use wsgiwrappers.WSGIResponse.defaults instead o allow WSGIResponse to let unicode responses pass through when no encoding is set (instead of defaulting to iso-8859-1). In case someone wants to deal with unicode later in their WSGI stack | ||||
* | multi var isn't used here | pjenvey | 2006-10-20 | 1 | -1/+0 |
| | |||||
* | Added some tests for multidict; fixed setdefault | ianb | 2006-09-26 | 1 | -1/+1 |
| | |||||
* | - adding dict_of_lists() to multidict to return a standard | cce | 2006-09-21 | 1 | -0/+14 |
| | | | | | | | | | | argument dictionary where values corresponding to a given key are returned in a list If you used the all_as_list argument to parse_formvars that was removed w/o backwards compatibility, you can convert your code to add .dict_of_lists() on the return value of parse_formvars as a replacement. | ||||
* | renamed the multidict class to MultiDict | pjenvey | 2006-07-25 | 1 | -7/+7 |
| | |||||
* | added copy method | pjenvey | 2006-07-23 | 1 | -1/+4 |
| | |||||
* | Added a method to get a cgi-style dictionary out of this dictionary | ianb | 2006-06-22 | 1 | -2/+27 |
| | |||||
* | Make multidict parse args+kw more like dict() does | ianb | 2006-06-22 | 1 | -6/+3 |
| | |||||
* | Added copyright header to a bunch of files | ianb | 2006-06-13 | 1 | -0/+2 |
| | |||||
* | - Space Nazi | cce | 2006-03-09 | 1 | -1/+2 |
| | |||||
* | Implementation of a multidict | ianb | 2006-03-09 | 1 | -0/+187 |