summaryrefslogtreecommitdiff
path: root/docs/reference.txt
diff options
context:
space:
mode:
authorSergey Schetinin <sergey@maluke.com>2011-06-30 17:52:23 +0300
committerSergey Schetinin <sergey@maluke.com>2011-06-30 17:52:23 +0300
commit700240d9366abfc5cecaab83dcaa5b3be4841938 (patch)
treefa21984e7e2125b873a258c10021134e4f1fffda /docs/reference.txt
parent070a77c525720a930b3be831bb6b72af9068ea5d (diff)
downloadwebob-700240d9366abfc5cecaab83dcaa5b3be4841938.tar.gz
drop python 2.4 compatibility
Diffstat (limited to 'docs/reference.txt')
-rw-r--r--docs/reference.txt8
1 files changed, 0 insertions, 8 deletions
diff --git a/docs/reference.txt b/docs/reference.txt
index 30afc80..9618ee0 100644
--- a/docs/reference.txt
+++ b/docs/reference.txt
@@ -965,14 +965,6 @@ This is taken from `paste.httpexceptions
you have Paste installed then these exceptions will be subclasses of
the Paste exceptions.
-Note that on Python 2.4 and before, new-style classes could not be
-used as exceptions. ``Response`` objects must be new-style classes,
-so this causes a bit of a conflict. The base class
-``webob.exc.HTTPException`` *is* an exception, so you can catch that,
-and it *is* a WSGI application. But you may not be able to use
-Response methods. You can always get ``obj.exception`` to get an
-exception that you can raise, and ``obj.wsgi_response`` to get the
-``Response`` object that you can use.
Conditional WSGI Application
----------------------------