This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author orsenthil
Recipients Walter.Woods, barry, hdiogenes, orsenthil, r.david.murray
Date 2010-05-05.15:06:22
SpamBayes Score 0.15379141
Marked as misclassified No
Message-id <1273071984.36.0.804984652995.issue8572@psf.upfronthosting.co.za>
In-reply-to
Content
Walter, just to address one of your point:

+            if failobj and not isinstance(failobj, list):
+                if isinstance(failobj, str):
+                    failobj = [failobj]
+                else:
+                    failobj = list(failobj)
             return failobj   

If the failobj is None, list(None) does not occur here and no exception will be raised. 

Yes, please attach a patch to this issue as you consider would be appropriate. We can see the differences. In py2.6, HTTPResponse.getheader did not invoke get_all method at all, it invokes a geheader method which is a simple dict lookup with default return.
History
Date User Action Args
2010-05-05 15:06:24orsenthilsetrecipients: + orsenthil, barry, hdiogenes, r.david.murray, Walter.Woods
2010-05-05 15:06:24orsenthilsetmessageid: <1273071984.36.0.804984652995.issue8572@psf.upfronthosting.co.za>
2010-05-05 15:06:22orsenthillinkissue8572 messages
2010-05-05 15:06:22orsenthilcreate