summaryrefslogtreecommitdiff
path: root/django/core/servers
Commit message (Expand)AuthorAgeFilesLines
* Fixed #32813 -- Made runserver display port after binding.Dhanush2023-02-101-1/+11
* Fixed #28054 -- Made runserver not return response body for HEAD requests.Sarah Boyce2023-01-271-1/+26
* Fixed #33865 -- Optimized LimitedStream wrapper.Nick Pope2023-01-051-1/+1
* Refs #25684 -- Removed double newline from request/response output of runserver.rafrafek2022-02-141-2/+2
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-29/+37
* Fixed #32416 -- Made ThreadedWSGIServer close connections after each thread.Chris Jerdonek2021-04-121-0/+23
* Fixed #32265, Refs #32355 -- Removed unnecessary ServerHandler.handle_error().Mariusz Felisiak2021-01-161-5/+0
* Fixed #32240 -- Made runserver suppress ConnectionAbortedError/ConnectionRese...Petter Strandmark2020-12-141-1/+5
* Fixed #30619 -- Made runserver --nothreading use single threaded WSGIServer.atsuo ishimoto2019-07-101-0/+3
* Fixed #30137 -- Replaced OSError aliases with the canonical OSError.Jon Dufresne2019-01-281-3/+3
* Refs #30015 -- Added 2.1.5 release note and removed 'we' in comments.Carlton Gibson2018-12-201-10/+9
* Fixed #30015 -- Ensured request body is properly consumed for keep-alive conn...Konstantin Alekseev2018-12-191-0/+19
* Fixed keep-alive support in manage.py runserver.Florian Apolloner2018-11-101-2/+24
* Fixed #28893 -- Removed unnecessary dict.items() calls.Tim Graham2017-12-061-1/+1
* Fixed #28440 -- Fixed WSGIServer hang on responses without a Content-Length.Tom2017-09-121-7/+0
* Fixed #25619 -- Made runserver serve with HTTP 1.1 protocolClaude Paroz2017-02-231-2/+12
* Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan2017-02-211-2/+2
* Removed WSGIServer.server_bind() identical to parent versionClaude Paroz2017-02-111-5/+0
* Fixed #20238 -- Added threading support to LiveServerTestCase.Nadège Michel2017-02-091-0/+5
* Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis2017-02-011-3/+3
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-5/+5
* Refs #23919 -- Replaced six.reraise by raiseClaude Paroz2017-01-221-11/+5
* Refs #23919 -- Removed misc references to Python 2.Tim Graham2017-01-211-1/+0
* Refs #23919 -- Removed unneeded str() callsClaude Paroz2017-01-201-1/+1
* Refs #23919 -- Removed str() conversion of type and method __name__.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-3/+3
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-1/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Fixed #27705 -- Added protocol/server_cls attributes to runserver for extensi...David Sanders2017-01-091-3/+3
* Fixed #26971 -- Prevented crash with non-UTF-8 incoming PATH_INFOClaude Paroz2016-08-231-15/+1
* Fixed #25684 -- Made runserver use logging for request/response output.Flavio Curella2016-01-111-34/+28
* Fixed #26011 -- Prevented random LiveServerTestCase test failures on Windows.Marten Kenbeek2015-12-311-0/+1
* Fixed #25204 -- Added missing space in runserver logging.Tim Graham2015-08-011-1/+1
* Fixed typo in django.core.servers.basehttp message.Alex Vidal2015-02-191-1/+1
* Removed old import aliases.Tim Graham2015-02-051-1/+0
* Removed FastCGI support per deprecation timeline; refs #20766.Tim Graham2015-01-172-191/+2
* Stripped headers containing underscores to prevent spoofing in WSGI environ.Carl Meyer2015-01-131-0/+8
* Fixed #24069 -- Made ServerHandler a new style class to fix super() call.Andreas Pelme2015-01-021-1/+2
* Fixed #4444 - Made runserver suppress 'broken pipe' errorsMatthew Somerville2014-11-281-0/+38
* Fixed #19508 -- Implemented uri_to_iri as per RFC.Anubhav Joshi2014-10-161-0/+17
* Fixed #23398 -- Added helpful error message when runserver is accessed via HTTPSFlavio Curella2014-09-091-1/+11
* Fixed #21773 -- made daemon threads default in the development server.Moayad Mardini2014-06-051-0/+8
* Fixed several typos in DjangoAlex Gaynor2014-05-281-1/+1
* Moved ServerHandler helper class to tests.Ramiro Morales2014-03-301-49/+1
* Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...Berker Peksag2014-02-081-5/+15
* Fixed #14800 -- Suppressed WSGIRequestHandler message filteringClaude Paroz2013-11-091-11/+0
* More attacking E302 violatorsAlex Gaynor2013-11-021-0/+2
* Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-022-3/+2
* Fixed "Address already in use" from liveserver.Florian Apolloner2013-09-221-8/+1
* Took advantage of django.utils.six.moves.urllib.*.Aymeric Augustin2013-09-051-5/+2