summaryrefslogtreecommitdiff
path: root/paste/urlmap.py
diff options
context:
space:
mode:
authorianb <devnull@localhost>2005-12-18 23:28:31 +0000
committerianb <devnull@localhost>2005-12-18 23:28:31 +0000
commit279c91e034874b70d503b5c64691863be9fa207b (patch)
tree3ba7b775f33c2224893b0acf496aca0b957b54ac /paste/urlmap.py
parent3e85883578c028ab9da207c0af4a2115abf7735b (diff)
downloadpaste-279c91e034874b70d503b5c64691863be9fa207b.tar.gz
A bunch of little import cleanups noted from pyflakes
Diffstat (limited to 'paste/urlmap.py')
-rw-r--r--paste/urlmap.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/paste/urlmap.py b/paste/urlmap.py
index e480848..ad70cad 100644
--- a/paste/urlmap.py
+++ b/paste/urlmap.py
@@ -1,11 +1,13 @@
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
+"""
+Map URL prefixes to WSGI applications. See ``URLMap``
+"""
from UserDict import DictMixin
import re
import os
import httpexceptions
-import wsgilib
__all__ = ['URLMap', 'PathProxyURLMap']