summaryrefslogtreecommitdiff
path: root/webob/__init__.py
blob: a693290765dc3fe9ffff3e6430cac7c6413b0c30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from webob.datetime_utils import *
from webob.request import *
from webob.response import *
from webob.util import html_escape

__all__ = [
    'Request', 'LegacyRequest', 'Response', 'UTC', 'day', 'week', 'hour',
    'minute', 'second', 'month', 'year', 'html_escape'
]

BaseRequest.ResponseClass = Response

__version__ = '1.2b2'