summaryrefslogtreecommitdiff
path: root/test/test_environ.py
Commit message (Expand)AuthorAgeFilesLines
* Reduce deprectation warnings during testsMarcel Hellkamp2023-03-041-2/+2
* fix #1111: Unicode multipart/form-data values in python3Marcel Hellkamp2023-02-211-3/+6
* fix: Make tests runnable with both unittest and pytestMarcel Hellkamp2022-06-121-1/+1
* fix: Cookie test falsely reports a failure for some python versions.Marcel Hellkamp2022-06-121-1/+1
* Fix #923: TypeError WSGI response header value u'...' is not of type strMarcel Hellkamp2017-01-091-0/+2
* fix #913: redirect() doesn't filter "\r\n" leads to CRLF attackMarcel Hellkamp2016-12-171-1/+12
* Fix tests for Python 2.5 (itertools.product missing)Marcel Hellkamp2016-12-101-3/+13
* fix #913: Harden bottle against malformed headers.Marcel Hellkamp2016-12-101-0/+14
* don't fail when request content type is application/json but the body is emptyBrett2014-05-241-0/+8
* fix #616: Json content-type not restrictive enoughMarcel Hellkamp2014-04-251-0/+9
* fix #564: Unicode in file uploads names.Marcel Hellkamp2013-12-041-8/+8
* Added (basic) support for Transfer-Encoding:chunked requests.Marcel Hellkamp2013-11-011-0/+34
* Removed the ``BaseRequest.MAX_PARAMS`` limit.Marcel Hellkamp2013-10-181-21/+0
* Fixed python 2.5 bug in tests.Marcel Hellkamp2013-06-211-2/+7
* Merge branch 'master' of github.com:defnull/bottleMarcel Hellkamp2013-06-051-2/+10
|\
| * More testsMarcel Hellkamp2013-06-041-2/+5
| * Added BaseResponse::expires tests.Marcel Hellkamp2013-06-041-1/+6
* | Preserve Cookies and other headers set on bottle.response on redirect()Marcel Hellkamp2013-06-051-0/+12
|/
* Removed unused importsfatiherikli2013-04-211-3/+2
* Added BaseRequest.url_args propertyMarcel Hellkamp2013-02-171-1/+8
* fix #399: Raise error for requests bigger than BaseRequest.MEMFILE_MAXMarcel Hellkamp2013-02-111-7/+7
* Added BaseRequest.route property.Marcel Hellkamp2013-02-011-1/+6
* Added tests for positional BaseResponse arguments.Marcel Hellkamp2013-01-071-0/+34
* fix #382: "dictionary changed size during iteration" bug in test case.Marcel Hellkamp2012-10-111-1/+1
* Some micro-optimisations.Marcel Hellkamp2012-08-301-1/+1
* Replaced HTTPResponse and HTTPError with subclasses of BaseResponse.Marcel Hellkamp2012-08-301-17/+17
* Fix: cgi.FieldStorage had a misleading implementation of __nonzero__ and retu...Marcel Hellkamp2012-07-201-0/+2
* fix: Fixes unicode problems with request.query and request.forms (fix #342 fi...Marcel Hellkamp2012-06-261-2/+2
* fix: Unicode errors with Python 3.2+ POST parameters. (fix #344, fix #349)Marcel Hellkamp2012-06-251-3/+8
* Changed the __setattr__ and __getattr__ behavior of Request instances.Marcel Hellkamp2012-04-041-10/+14
* Added a way to extend BaseRequest on a per-request basis via the bottle.reque...Marcel Hellkamp2012-04-041-5/+18
* Fixed most of the warnings in tests.Marcel Hellkamp2012-01-131-5/+5
* Added BaseRequest.app property.Marcel Hellkamp2011-12-301-0/+8
* fix: Workaround for a hash collision DoS vulnerability in CPython dicts.Marcel Hellkamp2011-12-281-0/+17
* Removing some useless imports.Iuri de Silvio2011-12-031-1/+1
* fix: All test-cases now support 2.x and 3.x from the same source.Marcel Hellkamp2011-12-021-20/+21
* api: Changed BaseResponse.status to return a string.Marcel Hellkamp2011-11-161-12/+12
* Fix: Request.set_cookie() now accepts expire=datetime/int and max_age=timedel...Marcel Hellkamp2011-10-271-6/+26
* fix: Request.json too restrictive. (fix #226)Marcel Hellkamp2011-09-251-1/+1
* Fix: #201 "Max recursion depth exceeded" on len(WSGIHeaderDict({}))Marcel Hellkamp2011-09-021-0/+3
* More compact code in redirect() and new tests for the HTTP/1.0 special case.Marcel Hellkamp2011-08-291-3/+5
* BaseRequest now supports a dict-like item access API to read, write andMarcel Hellkamp2011-06-211-0/+47
* Lots of tests and slightly more robust BaseResponse.set_status method.Marcel Hellkamp2011-06-141-92/+201
* Fixed some Python 3 issues.Marcel Hellkamp2011-06-101-4/+4
* Due to popular demand: Added BaseRequest.json property.Marcel Hellkamp2011-06-101-1/+41
* Added 'remote_route' and 'remote_addr' properties to BaseRequest.Marcel Hellkamp2011-06-101-3/+37
* Splitted Request into [Base/Local]Request. Same with Response.Marcel Hellkamp2011-06-061-0/+1
* Fix: AttributeError in is_ajax (fix #162)akolechkin2011-05-231-0/+10
* Removed most of the deprecated APIs.Marcel Hellkamp2011-05-141-4/+4
* Some more URL reconstruction tests.Marcel Hellkamp2011-05-141-11/+21