I have the following code but httplib still treats the header 'emptyheader' as key:value pair.
h = httplib.HTTPConnection("somewhere:5000")
headers = {}
headers['emptyheader'] = None
h.request('POST', '/somewhere', '', headers)
How do I send the sane request but with a valueless header 'emptyheader'?