diff options
| author | Tim Graham <timograham@gmail.com> | 2013-10-30 07:46:07 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-30 07:46:07 -0400 |
| commit | b47a052eb50567813d629e332bb0428d73c8892e (patch) | |
| tree | 842f5d816eec6ed40dd902d2a716f8577918c6e4 | |
| parent | 5733764a2c2923ae9a1b7c91de5a8d15414c99ef (diff) | |
Documented removal of django.core.servers.basehttp.WSGIServerException
refs 2ca00faa913754cd5860f6e1f23c8da2529c691a
| -rw-r--r-- | docs/releases/1.5.5.txt | 6 | ||||
| -rw-r--r-- | docs/releases/1.6.txt | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/docs/releases/1.5.5.txt b/docs/releases/1.5.5.txt index 172d91cdbd..ebd3dc73d1 100644 --- a/docs/releases/1.5.5.txt +++ b/docs/releases/1.5.5.txt @@ -31,3 +31,9 @@ Bugfixes Oracle and MySQL (#21203, #21126). * Fixed crashes when using combinations of ``annotate()``, ``select_related()``, and ``only()`` (#16436). + +Backwards incompatible changes +============================== + +* The undocumented ``django.core.servers.basehttp.WSGIServerException`` has + been removed. Use ``socket.error`` provided by the standard library instead. diff --git a/docs/releases/1.6.txt b/docs/releases/1.6.txt index 651938ea7c..424b7b1bdd 100644 --- a/docs/releases/1.6.txt +++ b/docs/releases/1.6.txt @@ -899,6 +899,10 @@ Miscellaneous to prevent django from deleting the temporary .pot file it generates before creating the .po file. +* The undocumented ``django.core.servers.basehttp.WSGIServerException`` has + been removed. Use ``socket.error`` provided by the standard library instead. + This change was also released in Django 1.5.5. + Features deprecated in 1.6 ========================== |
