summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Bicking <ian@ianbicking.org>2005-09-25 01:36:33 +0000
committerIan Bicking <ian@ianbicking.org>2005-09-25 01:36:33 +0000
commit3c2a57c4083d141ccce9fdca0708d1e6a609819d (patch)
treec6044f12099c1f173c64644b1fd9ba6a1ef3ba26
parente5feb3fa7805b550a67571f17b405090d36062b6 (diff)
downloadpaste-git-3c2a57c4083d141ccce9fdca0708d1e6a609819d.tar.gz
Removed references to deleted package
-rw-r--r--paste/recursive.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/paste/recursive.py b/paste/recursive.py
index 2aeee5d..08c370c 100644
--- a/paste/recursive.py
+++ b/paste/recursive.py
@@ -2,7 +2,6 @@
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
from cStringIO import StringIO
-from paste.docsupport import metadata
__all__ = ['RecursiveMiddleware']
@@ -28,11 +27,6 @@ class RecursiveMiddleware(object):
self.application, environ, start_response)
return self.application(environ, start_response)
- _wsgi_add1 = metadata.WSGIKey('paste.recursive.forward',
- interface='Forwarder')
- _wsgi_add2 = metadata.WSGIKey('paste.recursive.include',
- interface='Includer')
-
class Recursive(object):
def __init__(self, application, environ, start_response):
@@ -123,16 +117,6 @@ class IncludedResponse(object):
self.output = StringIO()
self.str = None
- _attr_headers = metadata.Attribute("""
- A list of ``[(header_name), (header_value)]``
- """)
- _attr_status = metadata.Attribute("""
- The status code returned (a string), like ``'200 OK'``
- """)
- _attr_body = metadata.Attribute("""
- The body of the response.
- """)
-
def close(self):
self.str = self.output.getvalue()
self.output.close()