summaryrefslogtreecommitdiff
path: root/webob/request.py
Commit message (Expand)AuthorAgeFilesLines
...
* | more test coverageSergey Schetinin2011-09-241-2/+0
* | mirror some deprecation changes from sergey-1.2-py2-only branchSergey Schetinin2011-09-241-2/+9
* | make cookies module all-bytes internallySergey Schetinin2011-09-241-1/+1
* | fix tests on windows; improve GET parsing; simpler cookie escapingSergey Schetinin2011-09-231-5/+3
* | deprecate as_string and from_stringChris McDonough2011-09-221-2/+15
* | use paren-importsChris McDonough2011-09-221-43/+62
* | in-the-wild code (webtest) depends on being able to call get_response with ca...Chris McDonough2011-09-221-6/+9
* | improve from_file tests and implementationChris McDonough2011-09-221-24/+21
* | repair docstringsChris McDonough2011-09-221-2/+7
* | sort imports and more direct importsChris McDonough2011-09-221-11/+11
* | use direct imports, kill dead importsChris McDonough2011-09-201-9/+8
* | make all test_request tests pass under py 3.2Chris McDonough2011-09-201-4/+7
* | b -> bytes_Chris McDonough2011-09-201-53/+71
* | fix the FakeCGIBody / _encode_multipart that lost some of the code during rew...Sergey Schetinin2011-09-191-6/+16
* | fix unresolved conflictsSergey Schetinin2011-09-191-1/+3
* | Merge commit 'bce343c65d61d2b0ff67b86fa7cee0f59f3bd288' into chrism-py3-alt-m...Sergey Schetinin2011-09-191-94/+40
|\ \ | |/
| * reimplement FakeCGIBody as an io.RawIOBase subclassSergey Schetinin2011-09-181-58/+21
| * reimplement LimitedLengthFile as an io.RawIOBase subclass; improve test resul...Sergey Schetinin2011-09-181-36/+21
* | Merge commit '250a1f802668378c69a751194aba19899b456f25' into chrism-py3-alt-m...Sergey Schetinin2011-09-191-14/+11
|\ \ | |/
| * StringIO -> BytesIOSergey Schetinin2011-09-181-14/+11
* | Merge branch '1.1-branch' into chrism-py3-alt-merge2Sergey Schetinin2011-09-191-6/+7
|\ \ | |/
| * do not set resp.request in req.get_response(app), warn when passing request t...Sergey Schetinin2011-09-171-2/+4
| * do seeks on raw body_fileSergey Schetinin2011-09-171-3/+2
| * fix LimitedLengthFile.readline incorrectly detecting disconnect when hintedSergey Schetinin2011-09-171-1/+1
* | try to make cookies work on both python 2 and python 3Chris McDonough2011-09-171-2/+1
* | use a 'normal' MultiDict for both GET and POST instead of a UnicodeMultiDict;...Chris McDonough2011-09-161-48/+74
* | work on items/keys/values, better conversions, syntax errorsChris McDonough2011-09-151-5/+6
* | work towards creating and using 'compat' module and removing syntax errors wh...Chris McDonough2011-09-151-15/+19
* | do the least amount of work possible to get rid of str_-prefixed methods; alw...Chris McDonough2011-09-151-140/+86
|/
* refactor _encode_multipart to use stringio instead of list of stringsSergey Schetinin2011-09-071-15/+18
* * add AcceptCharset and AcceptLanguage subclasses instead of branching in Acc...Sergey Schetinin2011-09-071-3/+3
* bring back to 100% test coverageSergey Schetinin2011-08-181-2/+1
* mark statements lacking coverageSergey Schetinin2011-08-071-1/+2
* fix disconnection detection for more cases in .readline(); improve test coverageSergey Schetinin2011-08-071-10/+1
* When the client disconnects while sending request body, most servers just startSergey Schetinin2011-08-071-14/+99
* make req.copy_body() not trust content-length as much + testsSergey Schetinin2011-08-041-2/+6
* syntax typosSergey Schetinin2011-07-311-2/+3
* change req.decode_param_maes default to True, warn about future deprecationSergey Schetinin2011-07-311-1/+11
* edit depreaction messageSergey Schetinin2011-07-301-1/+2
* mark req.str_* for deprecation in 1.2Sergey Schetinin2011-07-301-5/+29
* fix tests (sort POST dict in _encode_multipart)Sergey Schetinin2011-07-301-0/+1
* make _encode_multiparts generate boundary if necessarySergey Schetinin2011-07-301-14/+24
* Merged in riffm/webob (pull request #3)Sergey Schetinin2011-07-301-45/+25
|\
| * * make sure that for methods like GET and DELETE, which usually don't have a ...Sergey Schetinin2011-07-301-3/+3
| * Remove restrictions on request methods that are allowed to have a body.Ian Bicking2011-07-281-8/+5
| * default for req.method is 'GET' now (mostly for tests, REQUEST_METHOD should ...Sergey Schetinin2011-07-091-1/+1
| * * add warn_deprecation(...) mechanism that centralizes the deprecation warnin...Sergey Schetinin2011-07-081-18/+10
| * fix docs, adjust tests for docstringsSergey Schetinin2011-07-071-6/+6
| * rename FIXME -> TODO, remove some, update someSergey Schetinin2011-06-301-2/+1
| * remove FakeCGIBody.seek hack (no longer necessary)Sergey Schetinin2011-06-301-10/+2