diff options
author | Helmut Grohne <helmut@subdivi.de> | 2007-04-21 20:48:43 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2007-04-21 20:48:43 +0200 |
commit | 5b5b4992ffdc3c3dc3b28c004f211288fb6affcf (patch) | |
tree | 8b2b1ac20aaea7d988ea7189cbf31d8617c66e61 /wsgitools/scgi/asynchronous.py | |
parent | 5835a547893a7e89ef19e1e4e0b270b78c814a28 (diff) | |
download | wsgitools-5b5b4992ffdc3c3dc3b28c004f211288fb6affcf.tar.gz |
added some assertions
Diffstat (limited to 'wsgitools/scgi/asynchronous.py')
-rw-r--r-- | wsgitools/scgi/asynchronous.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wsgitools/scgi/asynchronous.py b/wsgitools/scgi/asynchronous.py index 9510b4d..ff226de 100644 --- a/wsgitools/scgi/asynchronous.py +++ b/wsgitools/scgi/asynchronous.py @@ -130,6 +130,8 @@ class SCGIConnection(asyncore.dispatcher): self.inbuff = "" def start_response(self, status, headers, exc_info=None): + assert isinstance(status, str) + assert isinstance(headers, list) if exc_info: if self.outheaders == True: try: |