summaryrefslogtreecommitdiff
path: root/webob
Commit message (Expand)AuthorAgeFilesLines
* merge from headtests.pycon2011Chris McDonough2011-03-209-151/+322
|\
| * pep 8; 79 charsChris McDonough2011-03-191-7/+14
| * pep8, 79 charsChris McDonough2011-03-191-9/+16
| * remove voodoo __getattr__ guard and remove fixmes from __setattr__ and __dela...Chris McDonough2011-03-181-8/+0
| * reduce dependencies to sane set; dont bother trying to test paste monkeypatchingChris McDonough2011-03-171-1/+1
| * Automated merge with ssh://bitbucket.org/chrism/webob-py3kReed O'Brien2011-03-171-15/+15
| |\
| | * whitespace facismReed O'Brien2011-03-171-15/+15
| * | 79 char line limitChris McDonough2011-03-171-36/+72
| |/
| * 98% overage for webob.exc:Tres Seaver2011-03-161-1/+1
| * Coverage for webob.datetime_utils.Tres Seaver2011-03-161-2/+8
| * dont break on python 2.4Chris McDonough2011-03-161-1/+3
| * cover BaseRequest.str_GET plus a (formerly) missing FakeCGIBody/FieldStorage ...Kai Groner2011-03-151-1/+1
| * Added two tests for exc, one doesn't work yetPatricio Paez2011-03-151-1/+1
| * exiting merge hell hopefullyWhit Morriss2011-03-151-10/+34
| * since 'args' is itself a tuple, it will blow up as a %r substitution unlessRob Miller2011-03-141-1/+1
| * add coverage for edge cases previously covered by doctests for body get and setChris McDonough2011-03-141-1/+1
| * Fix exposing object pointers in docstring output.Tres Seaver2011-03-141-2/+3
| * Remove dead code.Tres Seaver2011-03-141-4/+1
| * Wrap long lines.Tres Seaver2011-03-141-45/+92
| * mergeCasey Duncan2011-03-141-10/+37
| |\
| | * Import cleanups.Tres Seaver2011-03-141-10/+37
| * | Ignore coverage for conditional importsCasey Duncan2011-03-141-2/+2
| |/
| * whitespaceRob Miller2011-03-141-4/+4
| * Automated merge with ssh://bitbucket.org/chrism/webob-py3kReed O'Brien2011-03-141-7/+32
| |\
| | * one import per line, remove unused importsChris McDonough2011-03-141-7/+32
| * | remove unused importReed O'Brien2011-03-141-1/+1
| * | Add encoding statement to fileReed O'Brien2011-03-141-0/+2
| |/
| * some Request() coverageDaniel Holth2011-03-131-2/+2
| * remove unused importsAlexandre Conrad2011-03-131-2/+2
| * pep8Alexandre Conrad2011-03-131-2/+2
* | restore python 2.4 compatibilitySergey Schetinin2011-03-141-2/+4
|/
* update docstringsSergey Schetinin2011-03-121-2/+7
* * add Request.from_stringSergey Schetinin2011-03-121-8/+14
* - correct Request.as_string to use CRLFJon Nelson2011-03-121-7/+20
* * revert body_file semantics to 1.0.1 and earlierSergey Schetinin2011-03-101-6/+16
* revert the change that was making accesses to body_file seek the stream. side...Sergey Schetinin2011-03-101-4/+4
* * avoid making body seekable when accessing req.POST (the input stream is pre...Sergey Schetinin2011-03-101-2/+6
* make sure Request.get_response(app) seeks input body to start, if possibleSergey Schetinin2011-03-101-0/+2
* Make sure that req.url and related properties do not unnecessarily escape ":"...Daniel Nouri2011-03-071-3/+7
* the cgi bug from r563 (474607292508) was in fact a Chrome and _encode_multipa...Sergey Schetinin2011-02-222-12/+5
* fix cgi.FieldStorage 'multipart/form-data' parsing (the field names are not u...Sergey Schetinin2011-02-211-3/+10
* refactor req.str_POST a bitSergey Schetinin2011-02-201-13/+5
* document the fact that req.body_file seeks the input streamSergey Schetinin2011-02-201-3/+3
* * refactor from_file implementations a bitSergey Schetinin2011-02-202-43/+29
* add warning when client code uses MultiDict.update() and seemingly expects .e...Sergey Schetinin2011-02-201-6/+15
* Add a lot of tests.Sergey Schetinin2011-02-204-25/+11
* fix setting request body to FakeCGIBody to work with the updated body_file lo...Sergey Schetinin2011-02-191-8/+4
* refactor req.copy_get()Sergey Schetinin2011-02-191-6/+1
* * instead of detecting if env['wsgi.input'].seek works, assume it does not un...Sergey Schetinin2011-02-191-43/+37
* only issue a env['wsgi.input'].read(-1) when CONTENT_LENGTH is missing or ''Sergey Schetinin2011-02-171-1/+1