1. 29 May, 2006 1 kayıt (commit)
  2. 28 May, 2006 1 kayıt (commit)
  3. 18 May, 2006 1 kayıt (commit)
  4. 17 May, 2006 1 kayıt (commit)
  5. 08 May, 2006 1 kayıt (commit)
  6. 03 May, 2006 1 kayıt (commit)
  7. 30 Nis, 2006 2 kayıt (commit)
  8. 02 Nis, 2006 4 kayıt (commit)
  9. 31 Mar, 2006 1 kayıt (commit)
  10. 28 Mar, 2006 2 kayıt (commit)
  11. 18 Mar, 2006 1 kayıt (commit)
  12. 18 Şub, 2006 2 kayıt (commit)
  13. 17 Şub, 2006 1 kayıt (commit)
  14. 21 Ock, 2006 1 kayıt (commit)
  15. 26 Agu, 2005 1 kayıt (commit)
  16. 24 Agu, 2005 2 kayıt (commit)
  17. 17 Tem, 2005 1 kayıt (commit)
  18. 14 Tem, 2005 1 kayıt (commit)
  19. 26 Haz, 2005 1 kayıt (commit)
  20. 06 Şub, 2005 1 kayıt (commit)
  21. 05 Şub, 2005 1 kayıt (commit)
  22. 09 Ock, 2005 1 kayıt (commit)
  23. 22 Ara, 2004 1 kayıt (commit)
  24. 11 Eki, 2004 1 kayıt (commit)
  25. 31 Agu, 2004 1 kayıt (commit)
  26. 08 Agu, 2004 1 kayıt (commit)
  27. 07 Agu, 2004 1 kayıt (commit)
    • Jeremy Hylton's avatar
      Fix urllib2.urlopen() handling of chunked content encoding. · 5d9c3031
      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.
      5d9c3031
  28. 03 Agu, 2004 1 kayıt (commit)
  29. 11 Tem, 2004 1 kayıt (commit)
  30. 10 Tem, 2004 2 kayıt (commit)
  31. 29 Haz, 2004 1 kayıt (commit)
  32. 07 Haz, 2004 1 kayıt (commit)