- 29 May, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
and watch out for handler name collisions.
-
- 28 May, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 18 May, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 17 May, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
(fixes #1484793).
-
- 08 May, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 03 May, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 30 Nis, 2006 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
- 02 Nis, 2006 4 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
- 31 Mar, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 28 Mar, 2006 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
with title().
-
- 18 Mar, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 18 Şub, 2006 2 kayıt (commit)
-
-
Tim Peters yazdı
test suite. For urllib2, move the import of gopherlib into the only function that uses it: users (including the test suite) certainly shouldn't see a deprecation warning just because they import urllib2! If they actually use gopher_open(), fine, _then_ they should see a deprecation warning.
-
Tim Peters yazdı
-
- 17 Şub, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 21 Ock, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
Can/should this be backported?
-
- 26 Agu, 2005 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 24 Agu, 2005 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
- 17 Tem, 2005 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 14 Tem, 2005 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 26 Haz, 2005 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 06 Şub, 2005 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 05 Şub, 2005 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
(John J Lee) Minor code clarification and simplification.
-
- 09 Ock, 2005 1 kayıt (commit)
-
-
Johannes Gijsbers yazdı
removing some duplication and gaining some flexibility in the process.
-
- 22 Ara, 2004 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
Pass the full URL to find_user_password(), in particular so that hosts with port numbers can be looked up. Also specify the digest algorithm, even if it's MD5. Titus Brown verified that this fixes a problem with LiveJournal.
-
- 11 Eki, 2004 1 kayıt (commit)
-
-
Anthony Baxter yazdı
used to replace rfc822.formatdate for protocols like HTTP (where 'GMT' must be the timezone string).
-
- 31 Agu, 2004 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 08 Agu, 2004 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 07 Agu, 2004 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
The change to use the newer httplib interface admitted the possibility that we'd get an HTTP/1.1 chunked response, but the code didn't handle it correctly. The raw socket object can't be pass to addinfourl(), because it would read the undecoded response. Instead, addinfourl() must call HTTPResponse.read(), which will handle the decoding. One extra wrinkle is that the HTTPReponse object can't be passed to addinfourl() either, because it doesn't implement readline() or readlines(). As a quick hack, use socket._fileobject(), which implements those methods on top of a read buffer. (suggested by mwh) Finally, add some tests based on test_urllibnet. Thanks to Andrew Sawyers for originally reporting the chunked problem.
-
- 03 Agu, 2004 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Will backport to 2.3.
-
- 11 Tem, 2004 1 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
Modified Files: urllib2.py test/test_urllib2.py
-
- 10 Tem, 2004 2 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
- 29 Haz, 2004 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
[Bug #912845] urllib2 only checks for a 200 return code, but 206 is also legal if a Range: header was supplied. (Actually, should the first 'if' statement be modified to allow any 2xx status code?)
-
- 07 Haz, 2004 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Cleanup: use condition to be consistent with code above CookieJar is in cookielib
-