diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index 8fea699..9879fc3 100644
a
|
b
|
Example usage::
|
668 | 668 | |
669 | 669 | .. versionadded:: 1.4 |
670 | 670 | |
| 671 | Since version 1.4, Django development server is multithreaded by default. |
671 | 672 | Use the ``--nothreading`` option to disable the use of threading in the |
672 | 673 | development server. |
673 | 674 | |
diff --git a/docs/releases/1.4.txt b/docs/releases/1.4.txt
index 51766dc..fcaf60f 100644
a
|
b
|
field. This was something that should not have worked, and in 1.4 loading such
|
1145 | 1145 | incomplete fixtures will fail. Because fixtures are a raw import, they should |
1146 | 1146 | explicitly specify all field values, regardless of field options on the model. |
1147 | 1147 | |
| 1148 | django-admin-option:: --nothreading |
| 1149 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 1150 | |
| 1151 | The development server is now is multithreaded by default. Use the |
| 1152 | ``--nothreading`` option to disable the use of threading in the |
| 1153 | development server:: |
| 1154 | |
| 1155 | django-admin.py runserver --nothreading |
| 1156 | |
1148 | 1157 | Attributes disabled in markdown when safe mode set |
1149 | 1158 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |