summaryrefslogtreecommitdiff
path: root/docs/test_request.txt
Commit message (Collapse)AuthorAgeFilesLines
* partial doc fixesSergey Schetinin2011-09-251-36/+20
|
* update news.txt with relevant changesChris McDonough2011-09-221-7/+16
|
* reimplement FakeCGIBody as an io.RawIOBase subclassSergey Schetinin2011-09-181-0/+2
|
* * add AcceptCharset and AcceptLanguage subclasses instead of branching in ↵Sergey Schetinin2011-09-071-2/+2
| | | | | | | Accept.__init__ * that allows us to remove Accept.header_name * and change Accept.__repr__ to be more straightforward
* attempt to silence deprecation warnings during testingSergey Schetinin2011-08-181-7/+0
|
* change req.decode_param_maes default to True, warn about future deprecationSergey Schetinin2011-07-311-5/+5
|
* * make sure that for methods like GET and DELETE, which usually don't have a ↵Sergey Schetinin2011-07-301-4/+0
| | | | | | | body, if the body is set, req.is_body_readable actually becomes true * fix doctests
* quote etag values in __str__Sergey Schetinin2011-06-301-1/+1
|
* make accept.quality(..) return best quality, not first matchSergey Schetinin2011-06-301-4/+6
|
* * enhance the req.is_body_readable to always guess GET, HEAD, DELETE and ↵Sergey Schetinin2011-06-021-0/+5
| | | | | | | TRACE as unreadable and PUT and POST as readable * deny setting req.body or req.body_file to non-empty values for GET, HEAD and other bodiless requests * see also: https://bitbucket.org/ianb/webob/issue/12
* This commit aggregates most of the work done at the 2011 PyCon Pyramid ↵Sergey Schetinin2011-03-221-0/+553
sprint in Atlanta GA. Only tests updates are in it, library code changes are committed separately. The sprint was organised by Chris McDonough and provided WebOb with 100% statement coverage. Participated: Alexandre Conrad, Patricio Paez, Whit Morriss, Rob Miller, Reed O'Brien, Chris Shenton, Joe Dallago, Tres Seaver, Casey Duncan, Kai Groner, Chris McDonough. The bitbucket fork on which this work was done is at https://bitbucket.org/chrism/webob-py3k and contains a detailed changelog. A big thank you to everyone who contributed!