Skip to content

Commit

Permalink
Documented removal of django.core.servers.basehttp.WSGIServerException
Browse files Browse the repository at this point in the history
refs 2ca00fa
  • Loading branch information
timgraham committed Oct 30, 2013
1 parent 5733764 commit b47a052
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/releases/1.5.5.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 4 additions & 0 deletions docs/releases/1.6.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
==========================

Expand Down

1 comment on commit b47a052

@un33k
Copy link
Contributor

@un33k un33k commented on b47a052 Oct 30, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Excellent.

Please sign in to comment.