[disclaimer: this is a "why it can't be easily done" explanation, not a solution]
As @Slott pointed out, this is definitely the technically correct behavior when stream.close or stream.write is called on a closed socket. However, I understand the motivation for the question... in the context of a wsgi app, clients terminating the connection after a full or partial read is not an "exceptional" behavior, it happens all the time. For it to be left unhandled leaves the impression it was unexpected / the code was unprepared for this, when in fact it's expected, and shouldn't be worthy of note. So it'd be nice to fix.
The catch is that you'd have to find a way to distinguish cases different cases...
Situations like "client read 'Status: 304' and closed connection" or "client read all bytes and closed connection when it had requested connection should be reused" are ones where it would be appropriate to not issue any sort of logging besides a log.debug() call.
But situtations like "client stopped reading in the middle of file because connection died when ISP router had a stroke" are worthy of an error being logged. Something didn't successfully complete, and any transactional state your server app builtup should be rolled back. In which case IOError propagating upwards is the right thing to do.
Such errors are only silenceable if at every place they could be raised, the code is modified to distinguish those two cases. Until then, the wsgi authors seem to have erred on the side of caution. So there isn't a quick fix for this that I know of.
(Also, I should note this isn't django-specific, I use paste+pylons and have the same thing happen)