django1/django/test
Florian Apolloner 2ca00faa91 Fixed "Address already in use" from liveserver.
Our WSGIServer rewrapped the socket errors from server_bind into
WSGIServerExceptions, which is used later on to provide nicer
error messages in runserver and used by the liveserver to see if
the port is already in use. But wrapping server_bind isn't enough since
it only binds to the socket, socket.listen (which is called from
server_activate) could also raise "Address already in use".

Instead of overriding server_activate too I chose to just catch socket
errors, which seems to make more sense anyways and should be more robust
against changes in wsgiref.
2013-09-22 22:02:59 +02:00
..
__init__.py Fixed #19885 -- cleaned up the django.test namespace 2013-09-09 16:03:13 -04:00
_doctest.py REmoved some unused imports 2013-09-14 12:34:57 -07:00
client.py Removed a few trailing backslashes. 2013-09-22 14:04:10 +02:00
html.py Fixed spelling errors 2013-03-28 11:16:53 -06:00
runner.py Fixed #16534 -- Improved ability to customize DiscoverRunner 2013-09-10 09:49:39 -04:00
signals.py Fixed #19031 -- Added a warning when using override_settings with 'DATABASES' 2013-07-12 07:10:18 -04:00
simple.py Deprecated django.utils.importlib 2013-07-29 17:10:22 +02:00
testcases.py Fixed "Address already in use" from liveserver. 2013-09-22 22:02:59 +02:00
utils.py Fixed #19031 -- Added a warning when using override_settings with 'DATABASES' 2013-07-12 07:10:18 -04:00