1. c74521a Oops -- remove some debug print statements! by Guido van Rossum · 26 years ago
  2. 0454b51 Oops, pulled over by the tab police :-) by Guido van Rossum · 26 years ago
  3. b5916ab Change by Sjoerd (with minor reformatting): by Guido van Rossum · 26 years ago
  4. a08faba A few lines were indented using spaces instead of tabs -- fix them. by Guido van Rossum · 26 years ago
  5. 7e7ca0b A few lines were indented using spaces instead of tabs -- fix them. by Guido van Rossum · 26 years ago
  6. 6d4d1c2 Added support for "data" URL, by Sjoerd Mullender. by Guido van Rossum · 26 years ago
  7. 8a666e7 Fix a horrible race condition -- various routines were storing the by Guido van Rossum · 26 years ago
  8. 03710d2 Two suggested features by Sjoerd: by Guido van Rossum · 26 years ago
  9. c5d8fed (1) Use matchobj.groups(), not matchbj.group() to get all groups. by Guido van Rossum · 26 years ago
  10. e757962 Fix bad new bug in ftp code -- the test for existing file using NLST by Guido van Rossum · 27 years ago
  11. d499004 Solve two annoying problems with ftp URLs for Jack: when repeated by Guido van Rossum · 27 years ago
  12. c0f29c2 When a port is specified in an ftp:// URL, must convert it to a number! by Guido van Rossum · 27 years ago
  13. 8360005 Assert that the proxies object passed in to the URLopener constructor by Guido van Rossum · 27 years ago
  14. 036309b This should hopefully finally clean up the remaining __del__ related by Guido van Rossum · 27 years ago
  15. 654451d splitpasswd(): The parameter is named "user", not "host". by Fred Drake · 27 years ago
  16. 332e144 Use sys.exc_info() where needed. Use "re" module, making it threadsafe. by Guido van Rossum · 27 years ago
  17. 1049932 Initialize self.__tempfiles to [] in the constructor (else it remains by Guido van Rossum · 27 years ago
  18. 2b3fd76 One patch from Sjoerd and one from Jack. by Guido van Rossum · 27 years ago
  19. ab0abdc Explicitly close the socket and temp file in URLopener.retrieve(), so by Guido van Rossum · 27 years ago
  20. b6784dc Interpret three slashes in file: URL as local file (for Netscape on by Guido van Rossum · 27 years ago
  21. f668d17 Clear the ftp cache when it contains more than 10 entries. by Guido van Rossum · 27 years ago
  22. 2966b32 Catch *all* errors that ftplib can raise (ftplib.all_errors) rather by Guido van Rossum · 27 years ago
  23. c24751b Add Host: header to URL request. by Guido van Rossum · 27 years ago
  24. 1aec3f0 lowercase proxies env variables, for Windows. by Guido van Rossum · 27 years ago
  25. ab0d1af spliturl() should not throw away everything past first newline by Guido van Rossum · 27 years ago
  26. 54a1d0b (Jack+Guido:) interpret ../ in basejoin() according to RFC1808. by Guido van Rossum · 27 years ago
  27. c511aee Open files in binary mode. by Guido van Rossum · 27 years ago
  28. fd79566 Fix two small bugs with proxies. by Guido van Rossum · 27 years ago
  29. 838cb28 Put a new, more useful, set of references in the leading comment. by Guido van Rossum · 27 years ago
  30. d23d940 Move the 'import os' in URLopener.cleanup() to inside the block by Guido van Rossum · 27 years ago
  31. 0564e12 Added quote_plus() and unquote_plus(), to do space/plus substitutions by Guido van Rossum · 28 years ago
  32. bd01374 Add optional data argument to urlopen() and open_http(), to trigger POST. by Guido van Rossum · 28 years ago
  33. 29e7781 Added safeguard against failure in __del__. by Guido van Rossum · 28 years ago
  34. 3c8484e When re-raising an exception raised by a module used internally as by Guido van Rossum · 28 years ago
  35. c5d7e80 Fix the way the Authorization header is sent (how could this have worked?). by Guido van Rossum · 28 years ago
  36. 5b1b33c Fix another case where... by Guido van Rossum · 28 years ago
  37. b030bc0 Fix some cases where self.openedurl wasn't set. by Guido van Rossum · 28 years ago
  38. e6ad891 One fix by sjoerd and one suggested by him. Bumped __version__ to 1.5. by Guido van Rossum · 28 years ago
  39. 78c9637 Bump exposed __version__ to 1.4. by Guido van Rossum · 28 years ago
  40. f8abb38 Slightly faster (un)quoting. by Guido van Rossum · 28 years ago
  41. 2281d35 add nturl2path by Guido van Rossum · 28 years ago
  42. 84a00a8 Change defn of splitnport() to only accept valid digit strings. by Guido van Rossum · 28 years ago
  43. 53725a2 Added splitnport(), which is like splitport() but returns a numeric port, by Guido van Rossum · 28 years ago
  44. a7e4b28 Support optional filename argument for retrieve() and urlretrieve(), by Guido van Rossum · 28 years ago
  45. 71ac945 move mac url2path conversion to separate module by Guido van Rossum · 28 years ago
  46. 442e720 Added proxy handling; upped version. by Guido van Rossum · 28 years ago
  47. 0d12ead Try to normalize urls referring to local files (code copied from posixpath) by Jack Jansen · 28 years ago
  48. 8c8a02a speed up unquote() by using atoi() instead of eval() by Guido van Rossum · 29 years ago
  49. e8ea21b Added pathname2url and url2pathname methods (only correct for unix and by Jack Jansen · 29 years ago
  50. dc3e3f6 Fixed local file access for macintosh by Jack Jansen · 29 years ago
  51. e0371b8 Fixed basejoin. There were two main problems: by Sjoerd Mullender · 29 years ago
  52. ca44540 support overriding how to open unknown url types by Guido van Rossum · 29 years ago
  53. 9c4585a Removed addbase.__del__ because it can't work. by Sjoerd Mullender · 29 years ago
  54. 30642ab changed version :-) by Guido van Rossum · 29 years ago
  55. bbb0a05 use mimetools; add error handling and authentication by Guido van Rossum · 29 years ago
  56. 6cb15a0 add User-agent hdr; read and close the file upon http error by Guido van Rossum · 29 years ago
  57. a112470 Add hacks for switching protocol and path but leaving host unchanged by Guido van Rossum · 30 years ago
  58. fa59e83 Fix bug if tmpcache is None by Guido van Rossum · 30 years ago
  59. 3bb5448 New way of generating .pyc files, thanks to Sjoerd. by Guido van Rossum · 30 years ago
  60. 7aeb4b9 * Lib/linecache.py: don't crash on empty filename by Guido van Rossum · 30 years ago
  61. 3f9a6ec * Lib/rfc822.py: fix two bugs: error in readheaders interpreting by Guido van Rossum · 30 years ago
  62. 7c395db * Lib/urllib.py: implemented new quoting rules; added splituser, by Guido van Rossum · 30 years ago
  63. 590b289 Added tests for missing host to open_http and open_gopher by Guido van Rossum · 30 years ago
  64. 7c6ebb5 Renamed urlopen.py to urllib.py. by Guido van Rossum · 30 years ago