1. d048637 Issue #28022: Deprecate ssl-related arguments in favor of SSLContext. by Christian Heimes · 8 years ago
  2. 19e69c5 Issue #23883: Add missing APIs to __all__; patch by Jacek Kołodziej by Martin Panter · 9 years ago
  3. 22293df merge 3.4 (#22935) by Benjamin Peterson · 10 years ago
  4. e32467c allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935) by Benjamin Peterson · 10 years ago
  5. f9284ae merge 3.4 (#22921) by Benjamin Peterson · 10 years ago
  6. 7243b57 don't require OpenSSL SNI to pass hostname to ssl functions (#22921) by Benjamin Peterson · 10 years ago
  7. 8f791d3 Issue #6623: Remove deprecated Netrc class in the ftplib module. by Berker Peksag · 10 years ago
  8. 6e20460 Issue #21566: Make use of socket.listen() default backlog. by Charles-François Natali · 10 years ago
  9. d3e1207 Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref tests. by Serhiy Storchaka · 10 years ago
  10. 25d8aea Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref tests. by Serhiy Storchaka · 10 years ago
  11. b2a794d fixed test_ftplib by Christian Heimes · 11 years ago
  12. e7945d7 test_ftplib: skip check_hostname test when SNI is not available by Christian Heimes · 11 years ago
  13. e5b5edf Issue #19781: ftplib now supports SSLContext.check_hostname and server name by Christian Heimes · 11 years ago
  14. 4376763 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  15. 7908068 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  16. 2acc456 Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read by by Serhiy Storchaka · 11 years ago
  17. c30b178 Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read by by Serhiy Storchaka · 11 years ago
  18. 42686e4 merge 3.3 (#19118) by Benjamin Peterson · 11 years ago
  19. f8ab760 remove duplicate test_mkd (closes #19118) by Benjamin Peterson · 11 years ago
  20. 1e440cf Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as possible, since "localhost" goes through a DNS lookup under recent Windows versions. by Antoine Pitrou · 11 years ago
  21. f6fbf56 Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as possible, since "localhost" goes through a DNS lookup under recent Windows versions. by Antoine Pitrou · 11 years ago
  22. 07abe7a merge from 3.3 by Senthil Kumaran · 11 years ago
  23. 0d53860 Increasing test coverage of ftplib. Patch by Muhammad Jehanzeb by Senthil Kumaran · 11 years ago
  24. c2464bf test_ftplib: silence a BytesWarning when checking TypeError by Florent Xicluna · 11 years ago
  25. 5f3fef3 test_ftplib: silence a BytesWarning when checking TypeError by Florent Xicluna · 11 years ago
  26. 0d4f08c ftplib tests: provide a global socket's TIMEOUT variable and use it everywhere so that failing tests won't accidentally hang by Giampaolo Rodola' · 11 years ago
  27. 4489e92 (Merge 3.3) Close #6822: ftplib.FTP.storlines() expects a binary file, not a text file by Victor Stinner · 11 years ago
  28. ed3a303 Close #6822: ftplib.FTP.storlines() expects a binary file, not a text file by Victor Stinner · 11 years ago
  29. 87632f1 #6623: Add explicit deprecation warning for ftplib.Netrc. by R David Murray · 11 years ago
  30. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 11 years ago
  31. aa03a1f Small cleanup in test_ftplib by Antoine Pitrou · 12 years ago
  32. 08d0272 Small cleanup in test_ftplib by Antoine Pitrou · 12 years ago
  33. 0832af6 Issue #16717: get rid of socket.error, replace with OSError by Andrew Svetlov · 12 years ago
  34. b29614e compare singletons by identity not equality (closes #16712) by Benjamin Peterson · 12 years ago
  35. 8bc8585 provide a common method to check for RETR_DATA validity, first checking the expected len and then the actual data content; this way we get a failure on len mismatch rather than content mismatch (which is very long and unreadable) by Giampaolo Rodola' · 12 years ago
  36. b01c32d Issue #13453: Try to increase some socket timeouts to make some buildbots stop by Charles-François Natali · 13 years ago
  37. 4ce2f36 Issue #13453: Try to increase some socket timeouts to make some buildbots stop by Charles-François Natali · 13 years ago
  38. 5de1532 Issue 12139: ftplib - remove 'post CCC' test to fix various buildot failures due to dummy test server not properly handling SSL shutdown(), see http://bugs.python.org/msg139499 by Giampaolo Rodola' · 13 years ago
  39. 096dcb1 Issue 12139: add CCC command support to FTP_TLS class to revert the SSL connection back to clear-text. by Giampaolo Rodola' · 13 years ago
  40. ffc235c merge with 3.2 by Giampaolo Rodola' · 13 years ago
  41. 24befa8 merge with 3.1 by Giampaolo Rodola' · 13 years ago
  42. 0b5c21f #12002 - ftplib's abort() method raises TypeError by Giampaolo Rodola' · 13 years ago
  43. 842e567 reverting 9688977ef567 committed by accident by Giampaolo Rodola' · 13 years ago
  44. dbf0454 test_ftplib.py: change client default timeout from 10 to 2. Hanging for 10 seconds is way too much when we expect a server response which never comes in. by Giampaolo Rodola' · 13 years ago
  45. b28e094 test_ftplib.py: change client default timeout from 10 to 2. Hanging for 10 seconds is way too much when we expect a server response which never comes in. by Giampaolo Rodola' · 13 years ago
  46. a55efb3 #11072- applying http://bugs.python.org/review/11072/show suggestions by Giampaolo Rodola' · 13 years ago
  47. d78def9 Issue #11072: added MLSD command (RFC-3659) support to ftplib. by Giampaolo Rodola' · 13 years ago
  48. c90e19d Close #11958: Fix FTP tests for IPv6, bind to "::1" instead of "localhost". by Victor Stinner · 13 years ago
  49. 9c39f3c Issue #11811: Factor out detection of IPv6 support on the current host by Antoine Pitrou · 13 years ago
  50. 6dca527 Issue #11748: try to fix sporadic failures in test_ftplib by Antoine Pitrou · 13 years ago
  51. 7a21147 #8594: fix ResourceWarning in test_ftplib.py - patch by Nadeem Vawda. by Giampaolo Rodolà · 13 years ago
  52. 396ff06 Fix issue 8594: adds a source_address parameter to ftplib module. by Giampaolo Rodolà · 13 years ago
  53. 1bd93a7 fix ftplib resource warnings by Benjamin Peterson · 14 years ago
  54. 918e2d4 Clean up socket closing in test_ftplib. by Brett Cannon · 14 years ago
  55. 51be0f4 Merged revisions 85492 via svnmerge from by Antoine Pitrou · 14 years ago
  56. d778e56 Increase timeouts in test_ftplib (for very slow buildbots) by Antoine Pitrou · 14 years ago
  57. 977c707 Fix issue 6706: adds new handle_accepted() method to asyncore.dispatcher by Giampaolo Rodolà · 14 years ago
  58. bbc4782 fix issue 9601: ftplib now provides a workaround for invalid response code returned on MKD and PWD by non-compliant FTPserver implementations such as ISS shipped with Windows server 2003 by Giampaolo Rodolà · 14 years ago
  59. f96482e as per discussion with antoine revert changes made in 83708 as the user useing ftplib's readline methods is supposed to always use a binary file by Giampaolo Rodolà · 14 years ago
  60. b939235 fix issue #6822: ftplib's storline method doesn't work with text files by Giampaolo Rodolà · 14 years ago
  61. 6da11e5 fix wrong assertIs context by Giampaolo Rodolà · 14 years ago
  62. a67299e Fix issue #8806: add SSL contexts support to ftplib by Giampaolo Rodolà · 14 years ago
  63. bd576b7 Fix issue #4972: adds ftplib.FTP context manager protocol by Giampaolo Rodolà · 14 years ago
  64. d930b63 Merged revisions 80882 via svnmerge from by Giampaolo Rodolà · 14 years ago
  65. 45df820 Merged revisions 80552-80556,80564-80566,80568-80571 via svnmerge from by Victor Stinner · 14 years ago
  66. 2c4f98b Merged revisions 80392 via svnmerge from by Antoine Pitrou · 14 years ago
  67. 5733c08 Merged revisions 79226,79286 via svnmerge from by Antoine Pitrou · 14 years ago
  68. e961593 Merged revisions 77727 via svnmerge from by Ezio Melotti · 14 years ago
  69. 648bcd7 Merged revisions 76546 via svnmerge from by Antoine Pitrou · 15 years ago
  70. f988cd0 Merged revisions 76309 via svnmerge from by Antoine Pitrou · 15 years ago
  71. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  72. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  73. d06e3b0 Merged revisions 66673 via svnmerge from by Benjamin Peterson · 16 years ago
  74. 3a53fbb #3911 FTP.makeport was giving bad port numbers by Benjamin Peterson · 16 years ago
  75. be17a11 Merged revisions 66634 via svnmerge from by Benjamin Peterson · 16 years ago
  76. f78e02b Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,63887,63975,63998 via svnmerge from by Georg Brandl · 16 years ago
  77. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  78. 5e69685 Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-62231,62233-62235,62237-62239 via svnmerge from by Christian Heimes · 16 years ago
  79. 836baa5 Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61064,61066-61080 via svnmerge from by Christian Heimes · 16 years ago
  80. 8a392d7 Convert the socket module to insist on bytes for input, and to return bytes by Guido van Rossum · 17 years ago
  81. 3da4c4b Use an event variable to wait for the server to be ready, not time.sleep(). by Guido van Rossum · 17 years ago
  82. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago