summaryrefslogtreecommitdiffstats
path: root/Lib/ftplib.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,...Christian Heimes2008-04-131-1/+1
* Merged revisions 60176-60209 via svnmerge fromChristian Heimes2008-01-231-19/+54
* Change the default encoding for ftplib.FTP to latin1 so that bytes can be inBrett Cannon2007-10-081-1/+1
* Raise statement normalization in Lib/.Collin Winter2007-08-301-24/+23
* Minimal changes to make ftplib work. Basically, this opens the stream inGuido van Rossum2007-07-171-4/+5
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-3/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-26/+25
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-9/+9
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-051-2/+2
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-2/+2
* Fix new bug in ftplib.py introduced by exception scope limitation.Guido van Rossum2007-01-141-1/+2
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-3/+3
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-0/+11
* SF bug #1168983: ftplib.py string index out of rangeRaymond Hettinger2005-04-051-7/+16
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-4/+4
* Fix a regression from the 1.68->1.69 checkin:Walter Dörwald2002-06-031-1/+1
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-3/+3
* Replace boolean test with is NoneRaymond Hettinger2002-06-011-1/+1
* Use string methods where possible, and remove import stringNeal Norwitz2002-05-311-6/+5
* Closes SF patch 553277. Per GvR, reverting to original patch -- the way toRaymond Hettinger2002-05-121-1/+1
* Patch #553277: Accept callbacks that are callable, not callbacks that are true.Martin v. Löwis2002-05-081-1/+1
* Access the exception argument to see whether it starts with '500'.Martin v. Löwis2002-03-101-2/+2
* The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715.Martin v. Löwis2002-02-161-4/+4
* Whitespace normalization.Tim Peters2002-02-161-7/+7
* Update the docstring too. :-)Guido van Rossum2001-12-281-1/+1
* SF patch #497420 (Eduardo Pérez): ftplib: ftp anonymous passwordGuido van Rossum2001-12-281-13/+8
* Don't set passiveserver to 0 in connect(). See SF bug #495693.Guido van Rossum2001-12-231-1/+0
* Oops. Catching OverflowError from int() doesn't help, since it raisesGuido van Rossum2001-10-171-2/+2
* Fix SF bug #459767: ftplib fails with files > 2GBGuido van Rossum2001-10-161-5/+13
* Only close sockets if they have been created. Reported by Blake Winton.Martin v. Löwis2001-10-071-2/+5
* Change the 227 response parser to use a more liberal regularGuido van Rossum2001-08-171-7/+9
* Initialize msg to avoid unbound locals.Martin v. Löwis2001-07-311-0/+2
* Untabify IPv6 changes.Martin v. Löwis2001-07-261-66/+66
* Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients.Martin v. Löwis2001-07-241-22/+90
* remove global decl about unused variableJeremy Hylton2001-04-091-1/+0
* Move some constant initialization from FTP.__init__() and FTP.connect()Fred Drake2001-02-281-16/+16
* Provide a default for the blocksize arg of storbinary().Guido van Rossum2001-02-151-1/+1
* String method conversion.Eric S. Raymond2001-02-091-13/+13
* more __all__ updatesSkip Montanaro2001-01-201-0/+1
* Default to passive mode. See SF bug #126851.Guido van Rossum2001-01-151-1/+1
* Whitespace normalization.Tim Peters2001-01-141-635/+635
* Update the code to better reflect recommended style:Fred Drake2000-12-121-12/+12
* Added support for RFC 959's REST command (restart), closing SF patchBarry Warsaw2000-09-011-23/+38
* Convert some old-style string exceptions to class exceptions.Fred Drake2000-08-171-6/+6
* updated occurences of fqdn algorithm (closes patch #101197)Peter Schneider-Kamp2000-08-161-12/+4
* Fredrik Lundh:Guido van Rossum2000-03-281-2/+2
* Simple changes by Gerrit Holl - move author acknowledgements out ofGuido van Rossum2000-02-281-5/+5
* Actually, the previous batch's comment should have been different;Guido van Rossum2000-02-041-2/+3
* Patches by Michael Reilly to correctly deal with ftp URLs of the formGuido van Rossum1999-08-181-0/+2
* FTP.dir(): Fix typo in docstring.Fred Drake1999-07-071-1/+1