[issue1346874] httplib simply ignores CONTINUE

2020-11-04 Thread Mattias Amnefelt
Change by Mattias Amnefelt : -- nosy: +Mattias Amnefelt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue1346874] httplib simply ignores CONTINUE

2019-07-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: -terry.reedy versions: -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python

[issue1346874] httplib simply ignores CONTINUE

2019-07-21 Thread Tim B
Tim B added the comment: I've created a PR to potentially implement this in 3.9. Please take a look and review/test, if this issue is still relevant to you. -- nosy: +tbartlett0 ___ Python tracker ___

[issue1346874] httplib simply ignores CONTINUE

2019-07-21 Thread Tim B
Change by Tim B : -- versions: +Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue1346874] httplib simply ignores CONTINUE

2019-07-21 Thread Tim B
Change by Tim B : -- pull_requests: +14665 pull_request: https://github.com/python/cpython/pull/14880 ___ Python tracker ___ ___ P

[issue1346874] httplib simply ignores CONTINUE

2017-09-02 Thread Georg Sauthoff
Changes by Georg Sauthoff : -- nosy: +gms ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue1346874] httplib simply ignores CONTINUE

2016-04-03 Thread Patrick J McNerthney
Patrick J McNerthney added the comment: "(though I don’t understand why Apache doesn’t renegotiate while the request body is being sent)" Apache does attempt to do this, but HttpsConnection is immediately sending the body of the request as fast as the socket will allow, which fills up the SSL

[issue1346874] httplib simply ignores CONTINUE

2016-04-03 Thread Martin Panter
Martin Panter added the comment: Thankyou, I think I understand your situation better now (though I don’t understand why Apache doesn’t renegotiate while the request body is being sent). I would still argue that this is a new feature to be added rather than a bug though, and should only go int

[issue1346874] httplib simply ignores CONTINUE

2016-04-03 Thread Patrick J McNerthney
Patrick J McNerthney added the comment: Martin, My understanding of the intention of the "Expect: 100-continue" header would address being able to receive an error response that is determined solely from the http request headers sent. So I do think that that would be the proper way to address

[issue1346874] httplib simply ignores CONTINUE

2016-04-02 Thread Martin Panter
Martin Panter added the comment: Patrick, can you elaborate on the problem with Apache and renegotiation? How does the 100-continue request, or anticipating the 100 response, help? Perhaps Issue 25919 is relevant in this case, where we want the client to receive an error response before the re

[issue1346874] httplib simply ignores CONTINUE

2016-03-22 Thread Patrick J McNerthney
Patrick J McNerthney added the comment: I believe this is actually a bug, because it causes the posting of messages whose length is greater then the Apache HTTPD SSLRenegBufferSize setting to fail, whereas other http clients that first wait to receive the 100 response before sending the body d

[issue1346874] httplib simply ignores CONTINUE

2015-04-15 Thread Martin Panter
Martin Panter added the comment: This seems more like a new feature than a bug fix to me. Currently the behaviour is the same whether “Expect: 100-continue” is requested or not. According to , the client does not have to wait any specific length of

[issue1346874] httplib simply ignores CONTINUE

2012-07-11 Thread André Cruz
André Cruz added the comment: Attached is an updated patch against 2.7.3. It solves a bug in the tests and implements Carl's suggestion. The new tests pass and it updates the documentation as well. As for inclusion in 2.7, as this is in fact solving a bug, I would vote for it. Right now, if

[issue1346874] httplib simply ignores CONTINUE

2012-07-10 Thread Carl Nobile
Carl Nobile added the comment: André, As I said I'm not sure if I am fixing the same thing that this bug was originally posted for. However, after looking at my code I realized that I just did a quick work around for my situation and it shouldn't be put into any python release. This issue is t

[issue1346874] httplib simply ignores CONTINUE

2012-07-10 Thread Senthil Kumaran
Senthil Kumaran added the comment: The patch seems good. I apologize that this has been sitting stale for a long time. Since this is a new feature, I am not sure if putting to 3.3 might be a good idea. This is a feature for httplib, so it may not make it to 2.7.x, but can make it to 3.4. ---

[issue1346874] httplib simply ignores CONTINUE

2012-07-10 Thread André Cruz
André Cruz added the comment: Carl: that would be great. Do you use it regularly? Any other problems? Python devs: can anyone confirm me what still needs to be done so that this patch can be considered for merging into trunk? Thanks. -- ___ Python

[issue1346874] httplib simply ignores CONTINUE

2012-07-10 Thread Carl Nobile
Carl Nobile added the comment: Yes, exactly. I was not the one who posted the original bug report, but I found it when I ran into the same problem. I was not exactly sure if the original poster had the same issues as I had. I do know that my fix to the code eliminated some code making the code a

[issue1346874] httplib simply ignores CONTINUE

2012-07-10 Thread André Cruz
André Cruz added the comment: As far as I can see, the patch does add some documentation changes. What exactly is missing? As for the bug, if I understood correctly, what you are saying is that when "ignore_continue" is True, and the server sends a 100 Continue response, the code will contin

[issue1346874] httplib simply ignores CONTINUE

2012-07-10 Thread Carl Nobile
Carl Nobile added the comment: I was told some time ago that it was documentation changes. And, if I remember correctly CONTINUE (100) was not ignored, it was actually broken. Data was being read from stdin when a CONTINUE was received and this should never happen based on RFC 2616, because ther

[issue1346874] httplib simply ignores CONTINUE

2012-07-10 Thread André Cruz
André Cruz added the comment: Can anyone confirm what is missing for this patch to be committed? Is it just test and documentation changes or is something wrong with the code changes as well? -- nosy: +edevil ___ Python tracker

[issue1346874] httplib simply ignores CONTINUE

2011-08-06 Thread Nikolaus Rath
Changes by Nikolaus Rath : -- nosy: +Nikratio ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue1346874] httplib simply ignores CONTINUE

2011-04-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: Carl, anyone is free to submit an incomplete patch, and people often do, but if people who are affected by an issue do not think it worth their time to complete it, or even move it along, there is no reason to expect people who are not affected by it to think

[issue1346874] httplib simply ignores CONTINUE

2011-04-24 Thread Carl Nobile
Carl Nobile added the comment: I have run into this same issue. It does violate RFC2616 in section 4.3 "All 1xx (informational), 204 (no content), and 304 (not modified) responses MUST NOT include a message-body. All other responses do include a message-body, although it MAY be of zero length

[issue1346874] httplib simply ignores CONTINUE

2010-08-22 Thread Éric Araujo
Changes by Éric Araujo : -- assignee: -> orsenthil nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue1346874] httplib simply ignores CONTINUE

2010-08-21 Thread Mark Lawrence
Changes by Mark Lawrence : -- stage: -> patch review type: -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___ __

[issue1346874] httplib simply ignores CONTINUE

2008-08-07 Thread Rick Harris
Rick Harris <[EMAIL PROTECTED]> added the comment: I'm implemented the behavior described by Mike above with a patch to 2.6. The patch will raise an ExpectationFailed before sending the body if the server responds with a 417 (Expectation Failed). This patch should only modify behavior for reques