- 30 Tem, 2006 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 26 Tem, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Fix httplib.HTTPConnection.getresponse to not close the socket if it is still needed for the response.
-
- 03 May, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 17 Şub, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 29 Eyl, 2005 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 26 Haz, 2005 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 07 Kas, 2004 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
If read() returned less than the number of bytes request, the full amount was subtracted from length instead of the actually read amount.
-
- 14 Eki, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 18 Eyl, 2004 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 15 Eyl, 2004 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 14 Eyl, 2004 3 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
separates ip address from the port to accommodate ipv6 addresses.
-
- 18 Agu, 2004 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 07 Agu, 2004 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
Hack httplib to work with broken Akamai proxies. Make sure that httplib doesn't add extract Accept-Encoding or Content-Length headers if the client has already set them.
-
- 05 Haz, 2004 1 kayıt (commit)
-
-
Hye-Shik Chang yazdı
in HTTP/0.9 due to dissonance of httplib.LineAndFileWrapper and urllib.addbase.
-
- 04 May, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 18 Ock, 2004 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 19 Kas, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 09 Kas, 2003 1 kayıt (commit)
-
-
Alex Martelli yazdı
(same as commit of Sun Nov 2 to the release23-maint branch)
-
- 27 Eki, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Backported to 2.3.
-
- 29 Haz, 2003 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
The obvious way for this assertion to fail is if the LineAndFileWrapper constructor is called when an empty line. Raise a BadStatusError before the call.
-
- 24 Haz, 2003 1 kayıt (commit)
-
-
Greg Stein yazdı
In response to "shouldn't the client close the file?", the answer is "no". The original design behind HTTPConnection is that the client did not have to worry about it. The response would close itself when you read the last of the data from it. This closing also dealt with allowing the connection to perform another request/response (if it was a persistent connection). However... the auto-close behavior broke compatibility with the classic httplib.HTTP class' behavior when a zero-length response body was present. In that situation, the HTTPResponse object was auto-closing it since there was no data present, and for an HTTP/1.0 connection-close socket (or an HTTP/0.9 request) connection, that also ended up closing the socket. When an httplib.HTTP user went to read the socket... boom. A patch to correct the auto-close (for compat with old httplib users) was added in rev 1.22. But for non-zero-length *chunked* bodies, we should keep the auto-close behavior. The library user is not reading the socket (they can't cuz of the chunked response we just got done handling), so they should be immune to the response closing the socket. In fact, I would like to see (one day) the auto-close restored, and the HTTP subclass would simply have a flag to disable that behavior (for back-compat purposes).
-
- 14 Haz, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Fixes #754447.
-
- 12 May, 2003 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 05 May, 2003 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
Bug fix candidate.
-
- 18 Nis, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 06 Mar, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
Kevin Jacobs found that the code simplification did not exactly match the semantics of the original. Regression test cases were requested.
-
- 26 Şub, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
* Replaced "while 1" with "while True" * Rewrote read() and readline() for clarity and speed. * Replaced variable 'list' with 'hlist' * Used augmented assignment in two places.
-
- 25 Şub, 2003 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 24 Kas, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 13 Kas, 2002 2 kayıt (commit)
-
-
Jeremy Hylton yazdı
The buggy yahoo server was fixed, and the opalgroup test files are gone.
-
Jeremy Hylton yazdı
Also, remove unused local variable noted by pychecker.
-
- 09 Kas, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 03 Eyl, 2002 2 kayıt (commit)
-
-
Jeremy Hylton yazdı
along with some small changes (e.g. use of +=).
-
Jeremy Hylton yazdı
If the transfer-encoding is unknown, ignore it. Suggested by Tom Emerson.
-
- 08 Agu, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 25 Tem, 2002 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 16 Tem, 2002 2 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
Tim Peters yazdı
-