Changeset 2166
- Timestamp:
- 03/30/09 11:19:53
- Files:
-
- branches/python3/cherrypy/wsgiserver/__init__.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/python3/cherrypy/wsgiserver/__init__.py
r2156 r2166 83 83 import re 84 84 quoted_slash = re.compile("(?i)%2F") 85 import rfc82285 import email.utils 86 86 import socket 87 87 try: … … 693 693 694 694 if "date" not in hkeys: 695 self.outheaders.append(("Date", rfc822.formatdate()))695 self.outheaders.append(("Date", email.utils.formatdate())) 696 696 697 697 if "server" not in hkeys:

