1. 3c0d0ba Issue #12319: Support for chunked encoding of HTTP request bodies by Martin Panter · 8 years ago
  2. cde03fa [merge from 3.5] - Prevent HTTPoxy attack (CVE-2016-1000110) by Senthil Kumaran · 8 years ago
  3. 17742f2 [merge from 3.4] - Prevent HTTPoxy attack (CVE-2016-1000110) by Senthil Kumaran · 8 years ago
  4. 436fe5a [merge from 3.3] Prevent HTTPoxy attack (CVE-2016-1000110) by Senthil Kumaran · 8 years ago
  5. 4cbb23f Prevent HTTPoxy attack (CVE-2016-1000110) by Senthil Kumaran · 8 years ago
  6. 29f25690 Issue #22797: Synchronize urlopen() doc string with RST documentation by Martin Panter · 8 years ago
  7. 0f29ad1 More typo fixes for 3.6 by Martin Panter · 8 years ago
  8. d2367c6 Clean up urlopen doc string. by R David Murray · 8 years ago
  9. 0b39a55 Issue #14132, Issue #17214: Merge two redirect handling fixes from 3.5 by Martin Panter · 8 years ago
  10. e6f0609 Issue #17214: Percent-encode non-ASCII bytes in redirect targets by Martin Panter · 8 years ago
  11. ce6e068 Issue #14132: Fix redirect handling when target is just a query string by Martin Panter · 8 years ago
  12. 5d1110a merge from 3.5 by Senthil Kumaran · 8 years ago
  13. 9642eed Issue #26892: Honor debuglevel flag in urllib.request.HTTPHandler. by Senthil Kumaran · 8 years ago
  14. 1ce738e Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  15. f0564164 Fix typos in comments, documentation and test method names by Martin Panter · 8 years ago
  16. 51b697b Issue #26864: Merge no_proxy fixes from 3.5 by Martin Panter · 8 years ago
  17. aa27982 Issue #26864: Fix case insensitivity and suffix comparison with no_proxy by Martin Panter · 8 years ago
  18. 0996fa3 merge 3.5 by Senthil Kumaran · 8 years ago
  19. a7c0ff2 Issue #26804: urllib.request will prefer lower_case proxy environment variables by Senthil Kumaran · 8 years ago
  20. 48238c7 Issue #2202: Fix UnboundLocalError in AbstractDigestAuthHandler.get_algorithm_impls by Berker Peksag · 8 years ago
  21. e88dd1c Issue #2202: Fix UnboundLocalError in AbstractDigestAuthHandler.get_algorithm_impls by Berker Peksag · 8 years ago
  22. 885bdc4 Issue #25985: sys.version_info is now used instead of sys.version by Serhiy Storchaka · 8 years ago
  23. a3643c2 Issue #12923: Merge FancyURLopener fix from 3.5 by Martin Panter · 8 years ago
  24. a037022 Issue #12923: Reset FancyURLopener's redirect counter even on exception by Martin Panter · 8 years ago
  25. 0b57f0a merge from 3.5 by Senthil Kumaran · 9 years ago
  26. d4e51f4 Remove unnecessary test case comment in urllib.parse.py. These are asserted as test cases. by Senthil Kumaran · 9 years ago
  27. 86f7109 Issue #25822: Add docstrings to the fields of urllib.parse results. by Senthil Kumaran · 9 years ago
  28. 3fd4a73 Issue #25899: Converted non-ASCII characters in docstrings and manpage by Serhiy Storchaka · 9 years ago
  29. f65dd1d Issue #25576: Apply fix to new urlopen() doc string by Martin Panter · 9 years ago
  30. 960e848 Issue #16099: RobotFileParser now supports Crawl-delay and Request-rate by Berker Peksag · 9 years ago
  31. 507343a Add missing docstring by Raymond Hettinger · 9 years ago
  32. dfa95c9 Issue #20059: urllib.parse raises ValueError on all invalid ports. by Robert Collins · 9 years ago
  33. 1f9a29f Issue #24021: docstring for urllib.urlcleanup. by Robert Collins · 9 years ago
  34. 2fee5c9 Issue #24021: docstring for urllib.urlcleanup. by Robert Collins · 9 years ago
  35. c17686f Issue #13866: add *quote_via* argument to urlencode. by R David Murray · 9 years ago
  36. 244afcf Issue #23887: urllib.error.HTTPError now has a proper repr() representation. by Facundo Batista · 9 years ago
  37. 4c7f995 #7159: generalize urllib prior auth support. by R David Murray · 9 years ago
  38. 20416f7 Issue #23703: Fix a regression in urljoin() introduced in 901e4e52b20a. by Berker Peksag · 9 years ago
  39. 7e7a3db Issue #23865: close() methods in multiple modules now are idempotent and more by Serhiy Storchaka · 9 years ago
  40. 2116b12 Issue #23865: close() methods in multiple modules now are idempotent and more by Serhiy Storchaka · 9 years ago
  41. 1515450 Issue #23411: Added DefragResult, ParseResult, SplitResult, DefragResultBytes, by Serhiy Storchaka · 9 years ago
  42. a9dd680 (Merge 3.4) Issue #23881: urllib.request.ftpwrapper constructor now closes the by Victor Stinner · 9 years ago
  43. ab73e65 Issue #23881: urllib.request.ftpwrapper constructor now closes the socket if by Victor Stinner · 9 years ago
  44. 44eceb6 Issue #23563: Optimized utility functions in urllib.parse. by Serhiy Storchaka · 9 years ago
  45. 3ab6ba4 Merge: #23040: Clarify treatment of encoding and errors when component is bytes. by R David Murray · 10 years ago
  46. 8c4e112 #23040: Clarify treatment of encoding and errors when component is bytes. by R David Murray · 10 years ago
  47. b666697 use context's check_hostname attribute rather than the HTTPSHandler check_hostname parameter by Benjamin Peterson · 10 years ago
  48. 074b95d merge 3.4 by Benjamin Peterson · 10 years ago
  49. c216c48 Close #19494: add urrlib.request.HTTPBasicPriorAuthHandler by Nick Coghlan · 10 years ago
  50. a66e388 Issue #22278: Fix urljoin problem with relative urls, a regression observed by Senthil Kumaran · 10 years ago
  51. 8b7e161 backport context argument of urlopen (#22366) for pep 476 by Senthil Kumaran · 10 years ago
  52. a5c85b3 Issue #22366: urllib.request.urlopen will accept a context object (SSLContext) by Senthil Kumaran · 10 years ago
  53. 9145302 Issue #19524: Fixed resource leak in the HTTP connection when an invalid by Serhiy Storchaka · 10 years ago
  54. f54c350 Issue #19524: Fixed resource leak in the HTTP connection when an invalid by Serhiy Storchaka · 10 years ago
  55. 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 · 10 years ago
  56. 2b7ccbd merge from 3.4 by Senthil Kumaran · 10 years ago
  57. 7837376 Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull. by Senthil Kumaran · 10 years ago
  58. e2953e5 merge 3.4; backout changeset 3435c5865cfc due to buildbot failures. Ref #8797 by Senthil Kumaran · 10 years ago
  59. 402df09 backout changeset 3435c5865cfc due to buildbot failures. Ref #8797 by Senthil Kumaran · 10 years ago
  60. 39e6c07 merge from 3.4 by Senthil Kumaran · 10 years ago
  61. b2e3a93 Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull. by Senthil Kumaran · 10 years ago
  62. 465e60e Issue #22033: Reprs of most Python implemened classes now contain actual by Serhiy Storchaka · 10 years ago
  63. 284a4a1 Merge 3.4 by Senthil Kumaran · 10 years ago
  64. bc07ac5 Fix localhost checking in FileHandler. Raised in #21970. by Senthil Kumaran · 10 years ago
  65. edb07d2 merge 3.4 (#21463) by Benjamin Peterson · 10 years ago
  66. 3c2dca6 in ftp cache pruning, avoid changing the size of a dict while iterating over it (closes #21463) by Benjamin Peterson · 10 years ago
  67. 38acd4c Issue 21469: Minor code modernization (convert and/or expression to an if/else expression). by Raymond Hettinger · 10 years ago
  68. 122541b Issue 21469: Mitigate risk of false positives with robotparser. by Raymond Hettinger · 10 years ago
  69. 6117e5d urllib.response object to use _TemporaryFileWrapper (and _TemporaryFileCloser) by Senthil Kumaran · 10 years ago
  70. d8e24f1 Convert urllib.request parse_proxy doctests to unittests. by Senthil Kumaran · 10 years ago
  71. 78c8538 fix typo by Benjamin Peterson · 10 years ago
  72. 5dd3cae simplify check, since now there are only new-style classes by Benjamin Peterson · 10 years ago
  73. d6a91a7 Issue #20879: Delay the initialization of encoding and decoding tables for by Victor Stinner · 10 years ago
  74. 5d83d1a Issue #20270: urllib.urlparse now supports empty ports. by Serhiy Storchaka · 11 years ago
  75. ff97b08 Issue #20270: urllib.urlparse now supports empty ports. by Serhiy Storchaka · 11 years ago
  76. b6fac24 Backporing the fix from Issue #12692 by Senthil Kumaran · 11 years ago
  77. 67986f9 Issue #19735: Implement private function ssl._create_stdlib_context() to by Christian Heimes · 11 years ago
  78. aae6a1d Issue #18978: A more elegant technique for resolving the method by Jason R. Coombs · 11 years ago
  79. 7dc4f4b Issue #18978: Allow Request.method to be defined at the class level. by Jason R. Coombs · 11 years ago
  80. d80f7be merge from 3.3 by Senthil Kumaran · 11 years ago
  81. 324ae385 Improve urlencode docstring. Patch by Brian Brazil. by Senthil Kumaran · 11 years ago
  82. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  83. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  84. caa00fe Fix #17967 - Fix related to regression on Windows. by Senthil Kumaran · 11 years ago
  85. dcdadfe Fix thishost helper funtion in urllib. Returns the ipaddress of localhost when by Senthil Kumaran · 11 years ago
  86. 4e42ae8 Fix #17967: For ftp urls CWD to target instead of hopping to each directory by Senthil Kumaran · 11 years ago
  87. c70a6ae #17403: urllib.parse.robotparser normalizes the urls before adding to ruleline. by Senthil Kumaran · 11 years ago
  88. 5ccf2ff merge from 3.3 by Senthil Kumaran · 11 years ago
  89. 88249b8 merge from 3.3 by Senthil Kumaran · 11 years ago
  90. e9ec2e1 merge from 3.3 by Senthil Kumaran · 11 years ago
  91. 6b3026c merge from 3.3 by Senthil Kumaran · 11 years ago
  92. 8307075 Fix #17272 - Make Request.full_url and Request.get_full_url return same result under all circumstances. by Senthil Kumaran · 11 years ago
  93. fa6bdc6 merge 3.3 by Benjamin Peterson · 11 years ago
  94. 901a278 use correct format code for exceptions by Benjamin Peterson · 11 years ago
  95. 5238092 Issue #17272: Making the urllib.request's Request.full_url a descriptor. Fixes by Senthil Kumaran · 11 years ago
  96. 56b0a3d Remove redundant imports by Raymond Hettinger · 11 years ago
  97. 4a2ab12 Issue #17483: 3.3 Branch - Remove unreachable code in urllib.request by Senthil Kumaran · 11 years ago
  98. c616604 Merge: Use repr when printing unknown url type in urlopen. by R David Murray · 11 years ago
  99. d8a4696 Use repr when printing unknown url type in urlopen. by R David Murray · 11 years ago
  100. 9a8d693 Issue #17483: remove unreachable code in urlopen(). by Antoine Pitrou · 11 years ago