[issue14721] httplib doesn't specify content-length header for POST requests without data

Piotr Dobrogost report at bugs.python.org
Fri May 4 18:01:07 CEST 2012


Piotr Dobrogost <pd at bugs.python.dobrogost.net> added the comment:

> Fiddler reports that it receives the following headers for the POST request

Python 3.2.3 on Windows Vista 64bit gives the same output for

import http.client
conn = http.client.HTTPConnection('localhost',8888)
conn.request("POST", "/post", "", {})
conn.close()

----------
nosy: +piotr.dobrogost

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue14721>
_______________________________________


More information about the Python-bugs-list mailing list