wsgi/__init__.py
branchtls-sprint
changeset 1802 d628defebc17
parent 0 b97547f5f1fa
child 1977 606923dff11b
--- a/wsgi/__init__.py	Thu May 14 10:24:56 2009 +0200
+++ b/wsgi/__init__.py	Thu May 14 11:38:40 2009 +0200
@@ -7,7 +7,7 @@
 WSGI corresponding PEP: http://www.python.org/dev/peps/pep-0333/
 
 :organization: Logilab
-:copyright: 2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
+:copyright: 2008-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
 """
 __docformat__ = "restructuredtext en"
@@ -25,7 +25,7 @@
         return _pformat(obj)
     except:
         return u'<could not parse>'
-    
+
 def qs2dict(qs):
     """transforms a query string into a regular python dict"""
     result = {}
@@ -35,7 +35,7 @@
 
 def normalize_header(header):
     """returns a normalized header name
-    
+
     >>> normalize_header('User_Agent')
     'User-agent'
     """
@@ -84,4 +84,3 @@
         else:
             post.setdefault(key, []).append(submessage.get_payload())
     return post, files
-