diff options
author | Georg Brandl <georg@python.org> | 2008-06-12 22:23:59 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-12 22:23:59 (GMT) |
commit | 9f0f960d4ce48062dcb286903721fa89d6037159 (patch) | |
tree | 4640c5dd2f0ffc54affa131fe6b48cb70d480b71 /Lib/http | |
parent | a0c0a4a2616e83084052a34c9806b3308f5799db (diff) | |
download | cpython-9f0f960d4ce48062dcb286903721fa89d6037159.zip cpython-9f0f960d4ce48062dcb286903721fa89d6037159.tar.gz cpython-9f0f960d4ce48062dcb286903721fa89d6037159.tar.bz2 |
Remove traces of rfc822.
Diffstat (limited to 'Lib/http')
-rw-r--r-- | Lib/http/server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/http/server.py b/Lib/http/server.py index 2b6f135..35ade6c 100644 --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -315,7 +315,7 @@ class BaseHTTPRequestHandler(socketserver.StreamRequestHandler): # Examine the headers and look for a Connection directive. - # MessageClass (rfc822) wants to see strings rather than bytes. + # MessageClass wants to see strings rather than bytes. # But a TextIOWrapper around self.rfile would buffer too many bytes # from the stream, bytes which we later need to read as bytes. # So we read the correct bytes here, as bytes, then use StringIO |