summaryrefslogtreecommitdiff
path: root/paste/wsgiwrappers.py
diff options
context:
space:
mode:
authorpjenvey <devnull@localhost>2007-02-15 08:23:11 +0000
committerpjenvey <devnull@localhost>2007-02-15 08:23:11 +0000
commitc18d66db295737073f32fd28a8ea4e29906885c5 (patch)
treea5d18da18fd3368add72dbab76e92b697aae7fcb /paste/wsgiwrappers.py
parentdfdbb2efe3c15e6405a06211ffa24b3cc37589bf (diff)
downloadpaste-c18d66db295737073f32fd28a8ea4e29906885c5.tar.gz
added __all__
Diffstat (limited to 'paste/wsgiwrappers.py')
-rw-r--r--paste/wsgiwrappers.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/paste/wsgiwrappers.py b/paste/wsgiwrappers.py
index b94107c..1ea4ccf 100644
--- a/paste/wsgiwrappers.py
+++ b/paste/wsgiwrappers.py
@@ -17,6 +17,8 @@ from paste.wsgilib import encode_unicode_app_iter
from paste.httpheaders import ACCEPT_LANGUAGE
from paste.util.mimeparse import desired_matches
+__all__ = ['WSGIRequest', 'WSGIResponse']
+
_CHARSET_RE = re.compile(r'.*;\s*charset=(.*?)(;|$)', re.I)
class DeprecatedSettings(StackedObjectProxy):