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 vklogin
Recipients amaury.forgeotdarc, ipatrol, martin.panter, orsenthil, pitrou, trent, vklogin
Date 2014-06-22.19:42:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403466147.11.0.133989371526.issue9740@psf.upfronthosting.co.za>
In-reply-to
Content
Verified that Persistent Connections per HTTP 1.1 spec is already implemented and working correctly.

See:
http://hg.python.org/cpython/file/3f3de8c47ff8/Lib/http/client.py#l432

Also, tested this in packet sniffer to verify that connection is being reused.

But the server.py has in issue where the keep-alive can be used in HTTP/1.0:
http://hg.python.org/cpython/file/7417d8854f93/Lib/http/server.py#l331
So, the and in this line needs to be an 'or'.
History
Date User Action Args
2014-06-22 19:42:27vkloginsetrecipients: + vklogin, amaury.forgeotdarc, orsenthil, pitrou, trent, ipatrol, martin.panter
2014-06-22 19:42:27vkloginsetmessageid: <1403466147.11.0.133989371526.issue9740@psf.upfronthosting.co.za>
2014-06-22 19:42:27vkloginlinkissue9740 messages
2014-06-22 19:42:26vklogincreate