summaryrefslogtreecommitdiff
path: root/django/core/servers/basehttp.py
AgeCommit message (Expand)Author
2020-12-14Fixed #32240 -- Made runserver suppress ConnectionAbortedError/ConnectionRese...Petter Strandmark
2019-07-10Fixed #30619 -- Made runserver --nothreading use single threaded WSGIServer.atsuo ishimoto
2019-01-28Fixed #30137 -- Replaced OSError aliases with the canonical OSError.Jon Dufresne
2018-12-20Refs #30015 -- Added 2.1.5 release note and removed 'we' in comments.Carlton Gibson
2018-12-19Fixed #30015 -- Ensured request body is properly consumed for keep-alive conn...Konstantin Alekseev
2018-11-10Fixed keep-alive support in manage.py runserver.Florian Apolloner
2017-12-06Fixed #28893 -- Removed unnecessary dict.items() calls.Tim Graham
2017-09-12Fixed #28440 -- Fixed WSGIServer hang on responses without a Content-Length.Tom
2017-02-23Fixed #25619 -- Made runserver serve with HTTP 1.1 protocolClaude Paroz
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-02-11Removed WSGIServer.server_bind() identical to parent versionClaude Paroz
2017-02-09Fixed #20238 -- Added threading support to LiveServerTestCase.Nadège Michel
2017-02-01Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-22Refs #23919 -- Replaced six.reraise by raiseClaude Paroz
2017-01-21Refs #23919 -- Removed misc references to Python 2.Tim Graham
2017-01-20Refs #23919 -- Removed unneeded str() callsClaude Paroz
2017-01-19Refs #23919 -- Removed str() conversion of type and method __name__.Simon Charette
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-09Fixed #27705 -- Added protocol/server_cls attributes to runserver for extensi...David Sanders
2016-08-23Fixed #26971 -- Prevented crash with non-UTF-8 incoming PATH_INFOClaude Paroz
2016-01-11Fixed #25684 -- Made runserver use logging for request/response output.Flavio Curella
2015-12-31Fixed #26011 -- Prevented random LiveServerTestCase test failures on Windows.Marten Kenbeek
2015-08-01Fixed #25204 -- Added missing space in runserver logging.Tim Graham
2015-02-19Fixed typo in django.core.servers.basehttp message.Alex Vidal
2015-02-05Removed old import aliases.Tim Graham
2015-01-17Removed FastCGI support per deprecation timeline; refs #20766.Tim Graham
2015-01-13Stripped headers containing underscores to prevent spoofing in WSGI environ.Carl Meyer
2015-01-02Fixed #24069 -- Made ServerHandler a new style class to fix super() call.Andreas Pelme
2014-11-28Fixed #4444 - Made runserver suppress 'broken pipe' errorsMatthew Somerville
2014-10-16Fixed #19508 -- Implemented uri_to_iri as per RFC.Anubhav Joshi
2014-09-09Fixed #23398 -- Added helpful error message when runserver is accessed via HTTPSFlavio Curella
2014-06-05Fixed #21773 -- made daemon threads default in the development server.Moayad Mardini
2014-03-30Moved ServerHandler helper class to tests.Ramiro Morales
2014-02-08Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...Berker Peksag
2013-11-09Fixed #14800 -- Suppressed WSGIRequestHandler message filteringClaude Paroz
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-09-22Fixed "Address already in use" from liveserver.Florian Apolloner
2013-09-05Took advantage of django.utils.six.moves.urllib.*.Aymeric Augustin
2013-04-28Fixed #18336 -- Doubled request_queue_size.Aymeric Augustin
2013-03-20Fixed #18972 -- Refactored bundled wsgi server's chunking algorithm.Matthew Wood
2013-03-19Fixed #18003 -- Preserved tracebacks when re-raising errors.konarkmodi
2013-02-04Fixed #17061 -- Factored out importing object from a dotted pathClaude Paroz
2012-12-31Fixed #16241 -- Ensured the WSGI iterable's close() is always called.Aymeric Augustin
2012-11-03Prevented host resolution when running dev serverClaude Paroz
2012-10-20Removed custom WSGIRequestHandler.get_environClaude Paroz
2012-08-16[py3] Fixed a regression introduced in fcc8de0598.Aymeric Augustin
2012-08-16[py3] Ported django.core.servers.Aymeric Augustin