1. 03 Eyl, 2008 1 kayıt (commit)
  2. 14 Agu, 2008 1 kayıt (commit)
  3. 03 Agu, 2008 1 kayıt (commit)
  4. 21 Ock, 2008 1 kayıt (commit)
  5. 11 Ock, 2008 1 kayıt (commit)
  6. 05 Ock, 2008 2 kayıt (commit)
  7. 13 Ara, 2007 1 kayıt (commit)
  8. 01 Nis, 2006 2 kayıt (commit)
  9. 20 Ock, 2006 1 kayıt (commit)
  10. 29 Tem, 2005 1 kayıt (commit)
  11. 09 Ock, 2005 1 kayıt (commit)
  12. 31 Ara, 2004 1 kayıt (commit)
  13. 29 Haz, 2004 1 kayıt (commit)
  14. 07 May, 2004 1 kayıt (commit)
  15. 06 May, 2004 1 kayıt (commit)
  16. 12 Eki, 2003 1 kayıt (commit)
  17. 30 Mar, 2003 1 kayıt (commit)
  18. 07 Ock, 2003 1 kayıt (commit)
    • Raymond Hettinger's avatar
      Revert change 1.37. · ef30dc87
      Raymond Hettinger yazdı
      The nanoseconds saved by using dict.fromkeys aren't
      worth the loss in clarity.  Linear searches live on.
      ef30dc87
  19. 06 Ock, 2003 3 kayıt (commit)
  20. 16 Eki, 2002 1 kayıt (commit)
  21. 14 Eki, 2002 1 kayıt (commit)
  22. 25 Eyl, 2002 1 kayıt (commit)
  23. 18 Mar, 2002 1 kayıt (commit)
  24. 16 Kas, 2001 1 kayıt (commit)
  25. 13 Agu, 2001 1 kayıt (commit)
  26. 01 Mar, 2001 1 kayıt (commit)
  27. 15 Ock, 2001 1 kayıt (commit)
  28. 05 Ock, 2001 1 kayıt (commit)
  29. 19 Ara, 2000 1 kayıt (commit)
  30. 20 Haz, 2000 1 kayıt (commit)
  31. 14 Nis, 2000 1 kayıt (commit)
    • Fred Drake's avatar
      Anthony Baxter <anthony@interlink.com.au>: · 0556501a
      Fred Drake yazdı
      The following adds support for RTSP (RFC2326) URLs to the standard
      urlparse.py module.
      
      (Augmented by FLD to include rtspu:, specified in the same RFC & OK'd
      by Anthony.)
      0556501a
  32. 10 Nis, 2000 1 kayıt (commit)
  33. 04 Şub, 2000 1 kayıt (commit)
    • Guido van Rossum's avatar
      The third and final doc-string sweep by Ka-Ping Yee. · e7b146fb
      Guido van Rossum yazdı
      The attached patches update the standard library so that all modules
      have docstrings beginning with one-line summaries.
      
      A new docstring was added to formatter.  The docstring for os.py
      was updated to mention nt, os2, ce in addition to posix, dos, mac.
      e7b146fb
  34. 03 May, 1999 1 kayıt (commit)
  35. 18 Mar, 1999 1 kayıt (commit)
    • Guido van Rossum's avatar
      Sjoerd Mullender writes: · f3963b12
      Guido van Rossum yazdı
      If a filename on Windows starts with \\, it is converted to a URL
      which starts with ////.  If this URL is passed to urlparse.urlparse
      you get a path that starts with // (and an empty netloc).  If you pass
      the result back to urlparse.urlunparse, you get a URL that starts with
      //, which is parsed differently by urlparse.urlparse.  The fix is to
      add the (empty) netloc with accompanying slashes if the path in
      urlunparse starts with //.  Do this for all schemes that use a netloc.
      f3963b12
  36. 17 Mar, 1999 1 kayıt (commit)
    • Guido van Rossum's avatar
      Delete non-standard-conforming code in urljoin() that would use the · a2e18051
      Guido van Rossum yazdı
      netloc from the base url as the default netloc for the resulting url
      even if the schemes differ.
      
      Once upon a time, when the web was wild, this was a valuable hack
      because some people had a URL referencing an ftp server colocated with
      an http server without having the host in the ftp URL (so they could
      replicate it or change the hostname easily).
      
      More recently, after the file: scheme got added back to the list of
      schemes that accept a netloc, it turns out that this caused weirdness
      when joining an http: URL with a file: URL -- the resulting file: URL
      would always inherit the host from the http: URL because the file:
      scheme supports a netloc but in practice never has one.
      
      There are two reasons to get rid of the old, once-valuable hack,
      instead of removing the file: scheme from the uses_netloc list.  One,
      the RFC says that file: uses the netloc syntax, and does not endorse
      the old hack.  Two, neither netscape 4.5 nor IE 4.0 support the old
      hack.
      a2e18051