summaryrefslogtreecommitdiff
path: root/Lib/ftplib.py
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-30119: fix ftplib.FTP.putline() to throw an error for a illegal com...Dong-hee Na2017-07-261-0/+2
* Fix socket leaks (#351)Ivan Mokeev2017-04-031-38/+48
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-2/+2
* Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-5/+10
* allow a SSLContext to be given to ftplib.FTP_TLSBenjamin Peterson2015-01-041-5/+17
* make SSLv23 the default version in ftplib (closes #23111)Benjamin Peterson2015-01-041-2/+2
* Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read bySerhiy Storchaka2013-10-201-6/+21
* Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*,Terry Jan Reedy2013-03-111-2/+2
* Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. (pa...Giampaolo Rodola'2012-12-171-4/+7
* Issue #10883: Fix socket leaks in urllib.request.Nadeem Vawda2011-07-231-25/+31
* Fix closes issue1067702 The problem with close multiple ftp transfers were d...Senthil Kumaran2011-06-261-3/+4
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* Fix Issue #4841: timeout is now applied for connections resulting from PORT/E...Giampaolo Rodolà2010-04-191-0/+4
* Fix Issue #3817: 225 is now considered a valid response code for ABORGiampaolo Rodolà2010-04-181-1/+1
* Issue #6845: Add restart support for binary upload in ftplib. TheAntoine Pitrou2009-11-271-4/+5
* Issue #2054: ftplib now provides an FTP_TLS class to do secure FTP usingAntoine Pitrou2009-11-151-0/+176
* #1726172: dont raise an unexpected IndexError if a voidresp() call has an emp...Georg Brandl2009-04-051-3/+1
* backport r66656 so people using -Qnew aren't affectedBenjamin Peterson2008-09-271-1/+1
* Fixed the semantic of timeout for socket.create_connection andFacundo Batista2008-05-291-4/+5
* socket.error inherits from IOError, it no longer needs listing inGregory P. Smith2008-04-121-1/+1
* docstring and comment updates suggested by Giampaolo Rodola'Gregory P. Smith2008-01-221-3/+3
* accepts and closes issue #1221598: adds an optional callback to ftplib.FTPGregory P. Smith2008-01-221-17/+52
* FTP.ntransfercmd method now uses create_connection when passive,Facundo Batista2007-06-061-3/+1
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-251-2/+2
* Added the posibility to pass the timeout to FTP.connect, not only whenFacundo Batista2007-03-301-1/+3
* Forgot to add the file before the previous commit, here goFacundo Batista2007-03-261-25/+23
* Whitespace normalization.Tim Peters2007-01-301-2/+2
* Patch #1359217: Ignore 2xx response before 150 response.Martin v. Löwis2006-11-121-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