Re: Re: HTTP Header Capitalization in urllib.request.AbstractHTTPHandler (Python 3.3)

2013-11-20 Thread Chris Angelico
On Thu, Nov 21, 2013 at 10:26 AM, Logan wrote: > Not exactly as written, but close enough to get me working. Excellent. Sometimes it's fun to be just that evil. :) ChrisA -- https://mail.python.org/mailman/listinfo/python-list

Re: Re: HTTP Header Capitalization in urllib.request.AbstractHTTPHandler (Python 3.3)

2013-11-20 Thread Logan
On 11/20/2013 02:05 AM, Chris Angelico wrote: On Wed, Nov 20, 2013 at 1:14 PM, Logan wrote: Chris, That is genius. Thank you! Then it works? Awesome!! (Permit me an evil laugh. Muahahah!) This is why I love working with open source languages. Even if you don't end up actually changing a

Re: HTTP Header Capitalization in urllib.request.AbstractHTTPHandler (Python 3.3)

2013-11-19 Thread Chris Angelico
On Wed, Nov 20, 2013 at 1:14 PM, Logan wrote: > Chris, > > That is genius. Thank you! Then it works? Awesome!! (Permit me an evil laugh. Muahahah!) This is why I love working with open source languages. Even if you don't end up actually changing anything, you can go and snoop the code and s

Re: HTTP Header Capitalization in urllib.request.AbstractHTTPHandler (Python 3.3)

2013-11-19 Thread Logan
Chris, That is genius. Thank you! -- Logan -- https://mail.python.org/mailman/listinfo/python-list

Re: HTTP Header Capitalization in urllib.request.AbstractHTTPHandler (Python 3.3)

2013-11-18 Thread Chris Angelico
On Tue, Nov 19, 2013 at 1:25 AM, Logan Owen wrote: > Hello everyone, > > I was hoping for some advice in dealing with an edge case related to > Python's HTTP Header handling. Python is correctly assuming that the > HTTP header field name (eg Content-Type) is case insensitive, but I have > a webse

HTTP Header Capitalization in urllib.request.AbstractHTTPHandler (Python 3.3)

2013-11-18 Thread Logan Owen
Hello everyone, I was hoping for some advice in dealing with an edge case related to Python's HTTP Header handling. Python is correctly assuming that the HTTP header field name (eg Content-Type) is case insensitive, but I have a webservice I am interacting with that does not follow the standards.