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 gmixo
Recipients gmixo, martin.panter, r.david.murray
Date 2015-12-12.04:39:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1449895142.31.0.341235391454.issue25838@psf.upfronthosting.co.za>
In-reply-to
Content
You right I found who resend requests!

My request is goes through httplb2(which use httplib and resends request on failure), but the issue is that if request body contains file and then that file is read out and on retry there is nothing to read since we already read it in httplib. 
So what solution could you suggest for me? Is it some patch for httplib2 or totally my own troubles

This issue is on border of interacting httplib and httplib2
 - httplib sends request and reads out a file
 - httplib2 resends a request but file is already readed out

Will it be honest if we rereads file in httplib2? and could we able assume that readable object(hasattr(data,'read') == True) has also tell and seek methods
History
Date User Action Args
2015-12-12 04:39:02gmixosetrecipients: + gmixo, r.david.murray, martin.panter
2015-12-12 04:39:02gmixosetmessageid: <1449895142.31.0.341235391454.issue25838@psf.upfronthosting.co.za>
2015-12-12 04:39:02gmixolinkissue25838 messages
2015-12-12 04:39:01gmixocreate