summaryrefslogtreecommitdiff
path: root/django/core/handlers/wsgi.py
AgeCommit message (Expand)Author
2025-07-23Refs #36500 -- Shortened some long docstrings and comments.Mike Edmunds
2025-06-18Fixed #36467 -- Removed leading whitespaces from Set-Cookie header values in ...Lukas Komischke
2023-04-12Fixed #34484, Refs #34482 -- Reverted "Fixed #29186 -- Fixed pickling HttpReq...Mariusz Felisiak
2023-01-18Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak
2023-01-05Fixed #33865 -- Optimized LimitedStream wrapper.Nick Pope
2022-11-10Updated documentation and comments for RFC updates.Nick Pope
2022-09-14Fixed #29186 -- Fixed pickling HttpRequest and subclasses.Anvesh Mishra
2022-06-09Fixed #33755 -- Moved ASGI body-file cleanup into request class.Jonas Lundberg
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-01-18Removed unused buf_size argument to LimitedStream().Nick Pope
2021-07-29Fixed 32956 -- Lowercased spelling of "web" and "web framework" where appropr...David Smith
2020-02-11Fixed #31240 -- Properly closed FileResponse when wsgi.file_wrapper is used.Florian Apolloner
2019-10-29Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani
2019-07-26Fixed #30567 -- Made WSGIHandler pass FileResponse.block_size to wsgi.file_wr...Piotr Domanski
2019-06-15Refs #30451 -- Added HttpRequest._set_content_type_params() hook.Mariusz Felisiak
2018-09-28Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev
2018-09-26Refs #29784 -- Switched to https:// links where available.Jon Dufresne
2018-06-07Removed unused HttpRequest._post_parse_error attribute.Josh Schneier
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2017-11-07Fixed #28769 -- Replaced 'x if x else y' with 'x or y'.Дилян Палаузов
2017-03-04Refs #27795 -- Removed unneeded force_text callsClaude Paroz
2017-02-27Imported django.http classes instead of django.http.Asif Saifuddin Auvi
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-02-09Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-20Refs #23919 -- Removed unneeded str() callsClaude Paroz
2017-01-20Refs #23919 -- Removed unneeded force_str callsClaude Paroz
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-08-25Replaced property() usage with decorator in several places.Berker Peksag
2016-08-24Removed a blank line per isort.Tim Graham
2016-08-23Fixed #26971 -- Prevented crash with non-UTF-8 incoming PATH_INFOClaude Paroz
2016-04-29Fixed #26546 -- Allowed HTTPStatus enum values for HttpResponse.status.David Evans
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-04-04Fixed #26452 -- Loaded middleware on server start rather than on first request.David Evans
2016-02-10Fixed #26014 -- Added WSGIRequest content_type and content_params attributes.Curtis Maloney
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek
2015-11-20Fixed #25779 -- Removed redundant try block in WSGIHandlerAttila Tovt
2015-11-17Fixed #25682 -- Removed bare except clauses.Attila Tovt
2015-10-27Refs #17133 -- Optimized script_url handling in get_script_nameClaude Paroz
2015-10-23Fixed #17133 -- Properly handled successive slashes in incoming requestsClaude Paroz
2015-03-08Fixed #23173 -- Fixed incorrect stripping of SCRIPT_URLBas Peschier
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-28Fixed #24137 -- Switched to HTTP reason phrases from Python stdlib.Jon Dufresne
2015-01-17Removed request.REQUEST per deprecation timeline; refs #18659.Tim Graham
2015-01-05Fixed #24072 -- Added FileResponse for streaming binary files.Collin Anderson
2014-10-16Fixed #19508 -- Implemented uri_to_iri as per RFC.Anubhav Joshi
2014-10-13Fixed #23638 -- Prevented crash while parsing invalid cookie contentClaude Paroz