diff --git a/README b/README
index 1c8df0f..eb29732 100644
a
|
b
|
To contribute to Django:
|
41 | 41 | To run Django's test suite: |
42 | 42 | |
43 | 43 | * Follow the instructions in the "Unit tests" section of |
44 | | docs/internals/contributing.txt, published online at |
45 | | http://docs.djangoproject.com/en/dev/internals/contributing/#running-the-unit-tests |
46 | | |
47 | | |
| 44 | docs/internals/contributing/writing-code/unit-tests.txt, published online at |
| 45 | https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/ |
| 46 | No newline at end of file |
diff --git a/django/core/servers/basehttp.py b/django/core/servers/basehttp.py
index b51abcf..3e406b5 100644
a
|
b
|
import traceback
|
14 | 14 | import urllib |
15 | 15 | from wsgiref import simple_server |
16 | 16 | from wsgiref.util import FileWrapper # for backwards compatibility |
| 17 | from SocketServer import ThreadingMixIn |
17 | 18 | |
18 | 19 | import django |
19 | 20 | from django.core.exceptions import ImproperlyConfigured |
… |
… |
class ServerHandler(simple_server.ServerHandler, object):
|
69 | 70 | return ['\n'.join(traceback.format_exception(*sys.exc_info()))] |
70 | 71 | |
71 | 72 | |
72 | | class WSGIServer(simple_server.WSGIServer, object): |
| 73 | class WSGIServer(ThreadingMixIn, simple_server.WSGIServer, object): |
73 | 74 | """BaseHTTPServer that implements the Python WSGI protocol""" |
74 | 75 | |
75 | 76 | def __init__(self, *args, **kwargs): |
diff --git a/docs/internals/contributing/writing-code/submitting-patches.txt b/docs/internals/contributing/writing-code/submitting-patches.txt
index 4eb74e1..51f8b34 100644
a
|
b
|
and time availability), claim it by following these steps:
|
36 | 36 | * Log into your account, if you haven't already, by clicking "Login" in |
37 | 37 | the upper right of the ticket page. |
38 | 38 | |
39 | | * Claim the ticket by clicking the radio button next to "Accept ticket" |
| 39 | * Claim the ticket by clicking the radio button next to "reassign to..." |
40 | 40 | near the bottom of the page, then clicking "Submit changes." |
41 | 41 | |
42 | 42 | .. _Create an account: https://www.djangoproject.com/accounts/register/ |