1. 0250de4 bpo-27485: Rename and deprecate undocumented functions in urllib.parse (GH-2205) by Cheryl Sabella · 7 years ago
  2. 2cb4661 bpo-33034: Improve exception message when cast fails for {Parse,Split}Result.port (GH-6078) by Matt Eaton · 7 years ago
  3. fbd6051 bpo-32323: urllib.parse.urlsplit() must not lowercase() IPv6 scope value (#4867) by Коренберг Марк · 8 years ago
  4. 8df44ee remove a redundant lower in urllib.parse.urlsplit (#3008) by Oren Milman · 8 years ago
  5. 90e01e5 urllib: Simplify splithost by calling into urlparse. (#1849) by postmasters · 8 years ago
  6. 906f533 bpo-29976: urllib.parse clarify '' in scheme values. (GH-984) by Senthil Kumaran · 8 years ago
  7. 257b980 correct parse_qs and parse_qsl test case descriptions. (#968) by Senthil Kumaran · 8 years ago
  8. 21024f0 bpo-16285: Update urllib quoting to RFC 3986 (#173) by Ratnadeep Debnath · 8 years ago
  9. 8cbd3df Issue #28992: Use bytes.fromhex(). by Serhiy Storchaka · 9 years ago
  10. f8479ee Issue #25895: Merge from 3.5 by Berker Peksag · 9 years ago
  11. f676748 Issue #25895: Enable WebSocket URL schemes in urllib.parse.urljoin by Berker Peksag · 9 years ago
  12. 0b57f0a merge from 3.5 by Senthil Kumaran · 9 years ago
  13. d4e51f4 Remove unnecessary test case comment in urllib.parse.py. These are asserted as test cases. by Senthil Kumaran · 9 years ago
  14. 86f7109 Issue #25822: Add docstrings to the fields of urllib.parse results. by Senthil Kumaran · 9 years ago
  15. dfa95c9 Issue #20059: urllib.parse raises ValueError on all invalid ports. by Robert Collins · 10 years ago
  16. c17686f Issue #13866: add *quote_via* argument to urlencode. by R David Murray · 10 years ago
  17. 20416f7 Issue #23703: Fix a regression in urljoin() introduced in 901e4e52b20a. by Berker Peksag · 10 years ago
  18. 1515450 Issue #23411: Added DefragResult, ParseResult, SplitResult, DefragResultBytes, by Serhiy Storchaka · 10 years ago
  19. 44eceb6 Issue #23563: Optimized utility functions in urllib.parse. by Serhiy Storchaka · 10 years ago
  20. 3ab6ba4 Merge: #23040: Clarify treatment of encoding and errors when component is bytes. by R David Murray · 11 years ago
  21. 8c4e112 #23040: Clarify treatment of encoding and errors when component is bytes. by R David Murray · 11 years ago
  22. a66e388 Issue #22278: Fix urljoin problem with relative urls, a regression observed by Senthil Kumaran · 11 years ago
  23. 55ac5b3 Issue #22118: Switch urllib.parse to use RFC 3986 semantics for the resolution of relative URLs, rather than RFCs 1808 and 2396. by Antoine Pitrou · 11 years ago
  24. 465e60e Issue #22033: Reprs of most Python implemened classes now contain actual by Serhiy Storchaka · 11 years ago
  25. d6a91a7 Issue #20879: Delay the initialization of encoding and decoding tables for by Victor Stinner · 11 years ago
  26. 5d83d1a Issue #20270: urllib.urlparse now supports empty ports. by Serhiy Storchaka · 11 years ago
  27. ff97b08 Issue #20270: urllib.urlparse now supports empty ports. by Serhiy Storchaka · 11 years ago
  28. d80f7be merge from 3.3 by Senthil Kumaran · 12 years ago
  29. 324ae385 Improve urlencode docstring. Patch by Brian Brazil. by Senthil Kumaran · 12 years ago
  30. 56b0a3d Remove redundant imports by Raymond Hettinger · 12 years ago
  31. 8ea4616 Issue #1285086: Get rid of the refcounting hack and speed up by Serhiy Storchaka · 12 years ago
  32. ed30199 Fix issue16713 - tel url parsing with params by Senthil Kumaran · 13 years ago
  33. a61b09f Closes #9374: add back now-unused module attributes; removing them is a backward compatibility issue, since they have a public-seeming name. by Georg Brandl · 13 years ago
  34. eda29f4 urllib.parse cleanup. rename keywords used as variables by Senthil Kumaran · 13 years ago
  35. ffa4b2c Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just have ascii in help msg by Senthil Kumaran · 13 years ago
  36. 2fc5a50 Issue #14036: return None when port in urlparse cross 65535 by Senthil Kumaran · 13 years ago
  37. 6709b7d #14072: Fix parsing of tel URIs in urlparse by making the check for ports stricter. by Ezio Melotti · 13 years ago
  38. 1be320e Issue9374 - Generic parsing of query and fragment portion of urls for any scheme by Senthil Kumaran · 13 years ago
  39. 2a157d2 Fix closes issue12683 - urljoin to work with relative join of svn scheme. by Senthil Kumaran · 14 years ago
  40. b4bd4af merge from 3.1 by Senthil Kumaran · 14 years ago
  41. 397eb44 Issue #11467: Fix urlparse behavior when handling urls which contains scheme specific part only digits. by Senthil Kumaran · 14 years ago
  42. f6c8fd6 Merged revisions 86537,86867-86868,86881,86887,86913-86915,86931-86933,86960,86964,86974,86980,86996,87008,87050 via svnmerge from by Georg Brandl · 14 years ago
  43. ac71c54 Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl() by Victor Stinner · 14 years ago
  44. 3396e86 Merged revisions 87329 via svnmerge from by Senthil Kumaran · 15 years ago
  45. dca5b86 Fix Issue9721 - urljoin behavior when the relative url starts with ';' by Senthil Kumaran · 15 years ago
  46. ee25568 Fix spelling of Jamie Zawinski's surname in urllib.parse docstring (issue 10606) by David Malcolm · 15 years ago
  47. 9fc443c Issue 9873: the URL parsing functions now accept ASCII encoded byte sequences in addition to character strings by Nick Coghlan · 15 years ago
  48. d17ebdb Merged revisions 86676 via svnmerge from by Senthil Kumaran · 15 years ago
  49. c295862 Fix Issue4493 - urllib2 adds '/' to the path component of url, when it does not by Senthil Kumaran · 15 years ago
  50. 723a7a6 Merged revisions 86520 via svnmerge from by Senthil Kumaran · 15 years ago
  51. daa29d0 Fix Issue2244 - urllib unquotes user and password info multiple times - Patch by Theodore Turocy by Senthil Kumaran · 15 years ago
  52. 0256b2a Fix issue10192 - add urlencode to urllib.parse.__all__ by Senthil Kumaran · 15 years ago
  53. 37ddbb8 Merged revisions 76719,81270-81272,83294,83319,84038-84039 via svnmerge from by Florent Xicluna · 15 years ago
  54. 82a3f8a Silence the BytesWarning, due to patch r83294 for #9301 by Florent Xicluna · 15 years ago
  55. 7a956cc Merged revisions 83901 via svnmerge from by Senthil Kumaran · 15 years ago
  56. 30e86a4 Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded variations. Changes in Modules. by Senthil Kumaran · 15 years ago
  57. 8801f7a Merged revisions 83701 via svnmerge from by Senthil Kumaran · 15 years ago
  58. 84c7d9f Fix Issue754016 - urlparse goes wrong with IP:port without scheme by Senthil Kumaran · 15 years ago
  59. c049fca Fix an oversight in r83294. unquote() should reject bytes. Issue #9301. by Florent Xicluna · 15 years ago
  60. d496c4c Fix issue9301 - handle unquote({}) kind of case. by Senthil Kumaran · 15 years ago
  61. 79e17f6 Fix Issue9301 - urllib.parse.unquote and unquote_to_byte to raise TypeError for None. by Senthil Kumaran · 15 years ago
  62. a6c0319 Merged revisions 82881 via svnmerge from by Senthil Kumaran · 15 years ago
  63. aa69d4d Fix Issue5842 - Moving the tests out of urllib.parse module by Senthil Kumaran · 15 years ago
  64. c62efa8 Merged revisions 82301 via svnmerge from by Georg Brandl · 15 years ago
  65. fe1ad15 Merged revisions 82510 via svnmerge from by Senthil Kumaran · 15 years ago
  66. df022da Fix Issue5468 - urlencode to handle bytes and other alternate encodings. by Senthil Kumaran · 15 years ago
  67. 930049b Merged revisions 82326 via svnmerge from by Senthil Kumaran · 15 years ago
  68. 8749a63 Merged revisions 82324 via svnmerge from by Senthil Kumaran · 15 years ago
  69. d7c3ed5 Merged revisions 80605-80609,80642-80646,80651-80652,80674,80684-80686,80748,80852,80854,80870,80872-80873,80907,80915-80916,80951-80952,80976-80977,80985,81038-81040,81042,81053,81070,81104-81105,81114,81125,81245,81285,81402,81463,81516,81562-81563,81567,81593,81635,81680-81681,81684,81801,81888,81931-81933,81939-81942,81963,81984,81991,82120,82188,82264-82267 via svnmerge from by Benjamin Peterson · 15 years ago
  70. 0f78a94 Inadvertently removed part of the comment in r81271. by Florent Xicluna · 15 years ago
  71. c7b8e86 Issue #1285086: Speed up urllib.parse functions: quote, quote_from_bytes, unquote, unquote_to_bytes. by Florent Xicluna · 15 years ago
  72. d4cd188 Merged revisions 81132 via svnmerge from by Senthil Kumaran · 15 years ago
  73. ead169d Merged revisions 81130 via svnmerge from by Senthil Kumaran · 15 years ago
  74. 7a1e09f Merged revisions 80362 via svnmerge from by Senthil Kumaran · 15 years ago
  75. a3240dc Remove IPv6 parsing reference from this branch too. by Senthil Kumaran · 15 years ago
  76. 2eaef05 Merged revisions 80277 via svnmerge from by Senthil Kumaran · 15 years ago
  77. 6ffdb6f Merged revisions 80148 via svnmerge from by Senthil Kumaran · 15 years ago
  78. fd41e08 Merged revisions 80146 via svnmerge from by Senthil Kumaran · 15 years ago
  79. a6023ca Reverting the previous checkin (80103). The feature should not have been merged to 3.1 maint. by Senthil Kumaran · 15 years ago
  80. 2176ad5 Merged revisions 80102 via svnmerge from by Senthil Kumaran · 15 years ago
  81. ad02d23 Merged revisions 80101 via svnmerge from by Senthil Kumaran · 15 years ago
  82. a8dbb24 Merged revisions 78236 via svnmerge from by Senthil Kumaran · 15 years ago
  83. 6be85c5 Merged revisions 78234 via svnmerge from by Senthil Kumaran · 15 years ago
  84. 2df5fc7 Merged revisions 76718 via svnmerge from by Antoine Pitrou · 16 years ago
  85. b044b2a Merged revisions 74821,74828-74831,74833,74835 via svnmerge from by Georg Brandl · 16 years ago
  86. 3d6575d Use true booleans. by Georg Brandl · 16 years ago
  87. faf4149 #6118: dont ignore encoding arguments for arguments with spaces in quote_plus(). by Georg Brandl · 16 years ago
  88. eaaec27 Fix for Issue4962, issue4675. by Senthil Kumaran · 16 years ago
  89. 230feba urlencode: by Jeremy Hylton · 16 years ago
  90. f819886 Simplify a few complicated expressions. by Jeremy Hylton · 16 years ago
  91. a4de60a Whitespace normalization. by Jeremy Hylton · 16 years ago
  92. c469d4c Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module by Facundo Batista · 17 years ago
  93. 52dbbb9 - Issue #3300: make urllib.parse.[un]quote() default to UTF-8. by Guido van Rossum · 17 years ago
  94. 23e3856 Issue 1432. Fixes a bug caused because of the evolution by Facundo Batista · 17 years ago
  95. df9f1ec Revert accidentally committed files. Oops! by Guido van Rossum · 17 years ago
  96. 10faf6a Merged revisions 65544 via svnmerge from by Guido van Rossum · 17 years ago
  97. 2ac5de2 Issue 3314. The sys module is used in an error case. by Facundo Batista · 17 years ago
  98. 13e8946 Fix a few urllib bugs (NameErrors). by Georg Brandl · 17 years ago
  99. 1afc169 Make a new urllib package . by Jeremy Hylton · 17 years ago