summaryrefslogtreecommitdiff
path: root/django/core/handlers/wsgi.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34484, Refs #34482 -- Reverted "Fixed #29186 -- Fixed pickling HttpReq...Mariusz Felisiak2023-04-121-10/+0
* Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak2023-01-181-1/+1
* Fixed #33865 -- Optimized LimitedStream wrapper.Nick Pope2023-01-051-45/+35
* Updated documentation and comments for RFC updates.Nick Pope2022-11-101-1/+1
* Fixed #29186 -- Fixed pickling HttpRequest and subclasses.Anvesh Mishra2022-09-141-0/+10
* Fixed #33755 -- Moved ASGI body-file cleanup into request class.Jonas Lundberg2022-06-091-0/+3
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-33/+38
* Removed unused buf_size argument to LimitedStream().Nick Pope2022-01-181-2/+1
* Fixed 32956 -- Lowercased spelling of "web" and "web framework" where appropr...David Smith2021-07-291-1/+1
* Fixed #31240 -- Properly closed FileResponse when wsgi.file_wrapper is used.Florian Apolloner2020-02-111-0/+4
* Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani2019-10-291-2/+2
* Fixed #30567 -- Made WSGIHandler pass FileResponse.block_size to wsgi.file_wr...Piotr Domanski2019-07-261-1/+1
* Refs #30451 -- Added HttpRequest._set_content_type_params() hook.Mariusz Felisiak2019-06-151-10/+2
* Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev2018-09-281-3/+4
* Refs #29784 -- Switched to https:// links where available.Jon Dufresne2018-09-261-1/+1
* Removed unused HttpRequest._post_parse_error attribute.Josh Schneier2018-06-071-1/+0
* Fixed #28982 -- Simplified code with and/or.Дилян Палаузов2018-01-031-3/+1
* Fixed #28769 -- Replaced 'x if x else y' with 'x or y'.Дилян Палаузов2017-11-071-7/+3
* Refs #27795 -- Removed unneeded force_text callsClaude Paroz2017-03-041-2/+2
* Imported django.http classes instead of django.http.Asif Saifuddin Auvi2017-02-271-4/+4
* Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan2017-02-211-9/+4
* Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham2017-02-091-6/+4
* Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis2017-01-261-1/+1
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-1/+1
* Refs #23919 -- Removed unneeded str() callsClaude Paroz2017-01-201-4/+4
* Refs #23919 -- Removed unneeded force_str callsClaude Paroz2017-01-201-6/+3
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-10/+7
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Replaced property() usage with decorator in several places.Berker Peksag2016-08-251-2/+2
* Removed a blank line per isort.Tim Graham2016-08-241-1/+0
* Fixed #26971 -- Prevented crash with non-UTF-8 incoming PATH_INFOClaude Paroz2016-08-231-19/+7
* Fixed #26546 -- Allowed HTTPStatus enum values for HttpResponse.status.David Evans2016-04-291-1/+1
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-1/+2
* Fixed #26452 -- Loaded middleware on server start rather than on first request.David Evans2016-04-041-10/+4
* Fixed #26014 -- Added WSGIRequest content_type and content_params attributes.Curtis Maloney2016-02-101-4/+4
* Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek2015-12-311-1/+1
* Fixed #25779 -- Removed redundant try block in WSGIHandlerAttila Tovt2015-11-201-8/+3
* Fixed #25682 -- Removed bare except clauses.Attila Tovt2015-11-171-1/+1
* Refs #17133 -- Optimized script_url handling in get_script_nameClaude Paroz2015-10-271-3/+4
* Fixed #17133 -- Properly handled successive slashes in incoming requestsClaude Paroz2015-10-231-0/+6
* Fixed #23173 -- Fixed incorrect stripping of SCRIPT_URLBas Peschier2015-03-081-1/+1
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+1
* Fixed #24137 -- Switched to HTTP reason phrases from Python stdlib.Jon Dufresne2015-01-281-3/+0
* Removed request.REQUEST per deprecation timeline; refs #18659.Tim Graham2015-01-171-11/+0
* Fixed #24072 -- Added FileResponse for streaming binary files.Collin Anderson2015-01-051-0/+2
* Fixed #19508 -- Implemented uri_to_iri as per RFC.Anubhav Joshi2014-10-161-7/+4
* Fixed #23638 -- Prevented crash while parsing invalid cookie contentClaude Paroz2014-10-131-1/+1
* Fixed #21483 -- Added WSGI environ to kwargs sent to request_started signal.Joshua "jag" Ginsberg2014-08-291-1/+1
* Fixed #18314 -- Corrected request.build_absolute_uri() handling of paths star...Unai Zalakain2014-06-071-1/+5