[issue17485] Deleting Request data does not update Content-length header.

2014-03-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset e6d862886e5c by R David Murray in branch 'default': whatsnew: urllib Request objects are now reusable. http://hg.python.org/cpython/rev/e6d862886e5c -- ___ Python tracker

[issue17485] Deleting Request data does not update Content-length header.

2013-03-19 Thread R. David Murray
R. David Murray added the comment: Thanks, Daniel. I moved the test so that it would be run even if the network resource is not enabled. -- nosy: +r.david.murray resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> behavior _

[issue17485] Deleting Request data does not update Content-length header.

2013-03-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset b1579eb4e1bc by R David Murray in branch 'default': #17485: Delete the Content-Length header if the data attribute is deleted. http://hg.python.org/cpython/rev/b1579eb4e1bc -- nosy: +python-dev ___ Python

[issue17485] Deleting Request data does not update Content-length header.

2013-03-19 Thread Daniel Wozniak
New submission from Daniel Wozniak: The patch to fix issue http://bugs.python.org/issue16464 neglects the deleter method of the Request.data property. This allows Request._data to get updated without removing the Content-length header. -- components: Library (Lib) files: patch.diff key