aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/ftplib.py
Commit message (Expand)AuthorAge
* fix ftplib resource warningsBenjamin Peterson2010-10-31
* wrap some things in with blocksBenjamin Peterson2010-10-31
* Take advantage of the frozenset constant optimization.Raymond Hettinger2010-09-05
* fix issue 9601: ftplib now provides a workaround for invalid response code re...Giampaolo Rodolà2010-08-23
* remove obsolete 'import SOCKS' statementGiampaolo Rodolà2010-08-21
* as per discussion with antoine revert changes made in 83708 as the user usein...Giampaolo Rodolà2010-08-04
* fix issue #6822: ftplib's storline method doesn't work with text filesGiampaolo Rodolà2010-08-04
* Fix issue #8806: add SSL contexts support to ftplibGiampaolo Rodolà2010-05-26
* Fix issue #4972: adds ftplib.FTP context manager protocolGiampaolo Rodolà2010-05-10
* Merged revisions 80226 via svnmerge fromGiampaolo Rodolà2010-04-19
* Merged revisions 80172 via svnmerge fromGiampaolo Rodolà2010-04-18
* Merged revisions 76546 via svnmerge fromAntoine Pitrou2009-11-27
* Merged revisions 76309 via svnmerge fromAntoine Pitrou2009-11-17
* Merged revisions 70712,70714,70764-70765,70769-70771,70773,70776-70777,70788-...Benjamin Peterson2009-04-05
* #3911 FTP.makeport was giving bad port numbersBenjamin Peterson2008-09-27
* Merged revisions 66634 via svnmerge fromBenjamin Peterson2008-09-27
* #2834: Change re module semantics, so that str and bytes mixing is forbidden,Antoine Pitrou2008-08-19
* Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,...Georg Brandl2008-06-10
* Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,...Christian Heimes2008-04-13
* Merged revisions 60176-60209 via svnmerge fromChristian Heimes2008-01-23
* Change the default encoding for ftplib.FTP to latin1 so that bytes can be inBrett Cannon2007-10-08
* Raise statement normalization in Lib/.Collin Winter2007-08-30
* Minimal changes to make ftplib work. Basically, this opens the stream inGuido van Rossum2007-07-17
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-13
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-27
* Fix most trivially-findable print statements.Guido van Rossum2007-02-09
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-05
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-15
* Fix new bug in ftplib.py introduced by exception scope limitation.Guido van Rossum2007-01-14
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-10
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-13
* SF bug #1168983: ftplib.py string index out of rangeRaymond Hettinger2005-04-05
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-12
* Fix a regression from the 1.68->1.69 checkin:Walter Dörwald2002-06-03
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-01
* Replace boolean test with is NoneRaymond Hettinger2002-06-01
* Use string methods where possible, and remove import stringNeal Norwitz2002-05-31
* Closes SF patch 553277. Per GvR, reverting to original patch -- the way toRaymond Hettinger2002-05-12
* Patch #553277: Accept callbacks that are callable, not callbacks that are true.Martin v. Löwis2002-05-08
* Access the exception argument to see whether it starts with '500'.Martin v. Löwis2002-03-10
* The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715.Martin v. Löwis2002-02-16
* Whitespace normalization.Tim Peters2002-02-16
* Update the docstring too. :-)Guido van Rossum2001-12-28
* SF patch #497420 (Eduardo Pérez): ftplib: ftp anonymous passwordGuido van Rossum2001-12-28
* Don't set passiveserver to 0 in connect(). See SF bug #495693.Guido van Rossum2001-12-23
* Oops. Catching OverflowError from int() doesn't help, since it raisesGuido van Rossum2001-10-17
* Fix SF bug #459767: ftplib fails with files > 2GBGuido van Rossum2001-10-16
* Only close sockets if they have been created. Reported by Blake Winton.Martin v. Löwis2001-10-07
* Change the 227 response parser to use a more liberal regularGuido van Rossum2001-08-17
* Initialize msg to avoid unbound locals.Martin v. Löwis2001-07-31