[ python-Bugs-1170065 ] HTTPResponse.getheaders() returns lowercased header names

SourceForge.net noreply at sourceforge.net
Thu Mar 24 19:24:12 CET 2005


Bugs item #1170065, was opened at 2005-03-24 18:24
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1170065&group_id=5470

Category: Python Library
Group: Python 2.4
Status: Open
Resolution: None
Priority: 5
Submitted By: yain (yain)
Assigned to: Nobody/Anonymous (nobody)
Summary: HTTPResponse.getheaders() returns lowercased header names

Initial Comment:
I'm not sure, if this is a bug, or intentional
behaviour, because on one hand RFC states that field
names for HTTP headers are case-insensitive, on the
other hand, it's not what server really returns to client.

Example:

print response.getheaders()

Yields this (output formatted a bit for clarity):

[('content-length', '5998'), 
('accept-ranges', 'bytes'), 
('last-modified', 'Sun, 30 Jan 2005 14:36:09 GMT'), 
('connection', 'close'), 
('etag', '"26d79-176e-41fcf0d9"'), 
('date', 'Thu, 24 Mar 2005 18:14:07 GMT'), 
('content-type', 'text/html')]



----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1170065&group_id=5470


More information about the Python-bugs-list mailing list