Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SF bug #1168983: ftplib.py string index out of range | Raymond Hettinger | 2005-04-05 | 1 | -7/+16 |
| | | | | | | | | * resp[:1] in '123' # after Py2.2, this allowed blank responses to pass. * replace <> with != * provide a usage message for empty command line calls Backport candidate. | ||||
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -4/+4 |
| | | | | From SF patch #852334. | ||||
* | Fix a regression from the 1.68->1.69 checkin: | Walter Dörwald | 2002-06-03 | 1 | -1/+1 |
| | | | | string.split(foo, bar) must be foo.split(bar) instead of bar.split(foo). | ||||
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -3/+3 |
| | |||||
* | Replace boolean test with is None | Raymond Hettinger | 2002-06-01 | 1 | -1/+1 |
| | |||||
* | Use string methods where possible, and remove import string | Neal Norwitz | 2002-05-31 | 1 | -6/+5 |
| | |||||
* | Closes SF patch 553277. Per GvR, reverting to original patch -- the way to | Raymond Hettinger | 2002-05-12 | 1 | -1/+1 |
| | | | | | | test if 'callable' has not been supplied is to test for None instead of False. The previous correction to 'if callable()' was wrong because an unusable callback would be ignored rather than raising an exception. | ||||
* | Patch #553277: Accept callbacks that are callable, not callbacks that are true. | Martin v. Löwis | 2002-05-08 | 1 | -1/+1 |
| | |||||
* | Access the exception argument to see whether it starts with '500'. | Martin v. Löwis | 2002-03-10 | 1 | -2/+2 |
| | | | | Fixes #527855. | ||||
* | The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715. | Martin v. Löwis | 2002-02-16 | 1 | -4/+4 |
| | | | | | Replaces calls to socket.send() (which isn't guaranteed to send all data) with the new socket.sendall() method. | ||||
* | Whitespace normalization. | Tim Peters | 2002-02-16 | 1 | -7/+7 |
| | |||||
* | Update the docstring too. :-) | Guido van Rossum | 2001-12-28 | 1 | -1/+1 |
| | |||||
* | SF patch #497420 (Eduardo Pérez): ftplib: ftp anonymous password | Guido van Rossum | 2001-12-28 | 1 | -13/+8 |
| | | | | | | Instead of sending the real user and host, use "anonymous@" (i.e. no host name at all!) as the default anonymous FTP password. This avoids privacy violations. | ||||
* | Don't set passiveserver to 0 in connect(). See SF bug #495693. | Guido van Rossum | 2001-12-23 | 1 | -1/+0 |
| | | | | | This should definitely be backported to 2.2.1. I'll leave it to Jack to decide whether he wants to fix this in MacPython 2.2. | ||||
* | Oops. Catching OverflowError from int() doesn't help, since it raises | Guido van Rossum | 2001-10-17 | 1 | -2/+2 |
| | | | | ValueError on too-large inputs. | ||||
* | Fix SF bug #459767: ftplib fails with files > 2GB | Guido van Rossum | 2001-10-16 | 1 | -5/+13 |
| | | | | | size(), parse150(): try int() first, catch OverflowError, fall back to long(). | ||||
* | Only close sockets if they have been created. Reported by Blake Winton. | Martin v. Löwis | 2001-10-07 | 1 | -2/+5 |
| | |||||
* | Change the 227 response parser to use a more liberal regular | Guido van Rossum | 2001-08-17 | 1 | -7/+9 |
| | | | | | | | | expression. This is needed for certain servers that (in violation of the standard) don't return the parentheses in the response. This fixes SF bug #441712 by Henrik Weber (not exactly using his patch). | ||||
* | Initialize msg to avoid unbound locals. | Martin v. Löwis | 2001-07-31 | 1 | -0/+2 |
| | |||||
* | Untabify IPv6 changes. | Martin v. Löwis | 2001-07-26 | 1 | -66/+66 |
| | |||||
* | Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients. | Martin v. Löwis | 2001-07-24 | 1 | -22/+90 |
| | |||||
* | remove global decl about unused variable | Jeremy Hylton | 2001-04-09 | 1 | -1/+0 |
| | |||||
* | Move some constant initialization from FTP.__init__() and FTP.connect() | Fred Drake | 2001-02-28 | 1 | -16/+16 |
| | | | | | | | | to the class namespace. Allow FTP.close() to be called more than once without tossing cookies. (This seems to be a fairly common idiom for .close() methods, so let's try to be consistent.) | ||||
* | Provide a default for the blocksize arg of storbinary(). | Guido van Rossum | 2001-02-15 | 1 | -1/+1 |
| | | | | SF patch #103517 by mfx. | ||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -13/+13 |
| | |||||
* | more __all__ updates | Skip Montanaro | 2001-01-20 | 1 | -0/+1 |
| | |||||
* | Default to passive mode. See SF bug #126851. | Guido van Rossum | 2001-01-15 | 1 | -1/+1 |
| | | | | | | This is slightly controversial, but after reading the argumentation in the bug tracker for and against, I believe this is the right solution. Let me know if it breaks for you, and how. | ||||
* | Whitespace normalization. | Tim Peters | 2001-01-14 | 1 | -635/+635 |
| | |||||
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -12/+12 |
| | | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects. | ||||
* | Added support for RFC 959's REST command (restart), closing SF patch | Barry Warsaw | 2000-09-01 | 1 | -23/+38 |
| | | | | | | | | | | | | | | | | | | | | #101187, which some modifications. Specifically, ntransfercmd(), transfercmd(), and retrbinary() all grow an optional `rest' argument, which if not None, is used as the argument to an FTP REST comman dbefore the socket is returned. Differences from the SF patch: - always compare against None with `is' or `is not' instead of == or != - no parens around conditional - RFC 959 defines the argument to REST is a string containing any ASCII characters in the range [33..126]. Therefore, we use the %s format character instead of %f or %d as suggested in the patch's comments. Note that we do /not/ sanity checkthe contents of the rest argument (but we'll document this in the library reference manual). | ||||
* | Convert some old-style string exceptions to class exceptions. | Fred Drake | 2000-08-17 | 1 | -6/+6 |
| | |||||
* | updated occurences of fqdn algorithm (closes patch #101197) | Peter Schneider-Kamp | 2000-08-16 | 1 | -12/+4 |
| | |||||
* | Fredrik Lundh: | Guido van Rossum | 2000-03-28 | 1 | -2/+2 |
| | | | | | This fixes a bunch of socket.connect(host, post) calls. Note that I haven't tested all modules -- I don't have enough servers here... | ||||
* | Simple changes by Gerrit Holl - move author acknowledgements out of | Guido van Rossum | 2000-02-28 | 1 | -5/+5 |
| | | | | docstrings into comments. | ||||
* | Actually, the previous batch's comment should have been different; | Guido van Rossum | 2000-02-04 | 1 | -2/+3 |
| | | | | | | | | | | *this* set of patches is Ka-Ping's final sweep: The attached patches update the standard library so that all modules have docstrings beginning with one-line summaries. A new docstring was added to formatter. The docstring for os.py was updated to mention nt, os2, ce in addition to posix, dos, mac. | ||||
* | Patches by Michael Reilly to correctly deal with ftp URLs of the form | Guido van Rossum | 1999-08-18 | 1 | -0/+2 |
| | | | | | ftp://user@host//root/path: the double slash in the pathname means to go to the root directory even if the initial directory isn't the root. | ||||
* | FTP.dir(): Fix typo in docstring. | Fred Drake | 1999-07-07 | 1 | -1/+1 |
| | |||||
* | Add warning to Netrc's docstring that it is obsolete -- use the netrc | Guido van Rossum | 1998-12-22 | 1 | -0/+2 |
| | | | | | module instead. (The main advantage of the latter is that it comes with documentation.) | ||||
* | Typo discovered by Just. | Guido van Rossum | 1998-12-21 | 1 | -1/+1 |
| | |||||
* | According to Robin Dunn, at least one FTP server returns 200 instead | Guido van Rossum | 1998-07-02 | 1 | -1/+1 |
| | | | | of 250 on a successful delete. | ||||
* | parse150(): Simplify RE used to parse the message a little, taking advantage | Fred Drake | 1998-04-27 | 1 | -2/+1 |
| | | | | of using re instead of regex. | ||||
* | A few lines were indented using spaces instead of tabs -- fix them. | Guido van Rossum | 1998-03-26 | 1 | -132/+137 |
| | |||||
* | Add rmd() (remove directory command); fix comment in parse257. | Guido van Rossum | 1998-02-19 | 1 | -2/+8 |
| | | | | | In login(), force passwd and acct to '' when they are None (this can happen in the test program!). | ||||
* | Provide default for blocksize on retrbinary (Skip Montanaro). | Guido van Rossum | 1997-12-03 | 1 | -1/+1 |
| | |||||
* | Use re instead of regex. Also remove bogus return statement from __init__(). | Guido van Rossum | 1997-10-22 | 1 | -6/+8 |
| | |||||
* | Return the error code from most commands, rather than swallowing it. | Guido van Rossum | 1997-10-07 | 1 | -16/+25 |
| | | | | | Adapted the example (lying slightly about the string printed by login()). | ||||
* | Wrapped up the ~/.netrc support. This is basically just the changes Guido & | Fred Drake | 1997-06-24 | 1 | -6/+27 |
| | | | | I discussed to the original version way-back-when. | ||||
* | Added Fred Drake's netrc parser class. | Guido van Rossum | 1997-03-14 | 1 | -0/+100 |
| | |||||
* | (ftplib.py): Added parse150() function and FTP.ntransfercmd(). This allows | Fred Drake | 1997-01-10 | 1 | -3/+30 |
| | | | | access to the expected size of a transfer when available. | ||||
* | Always open file objects in binary mode. | Guido van Rossum | 1996-09-30 | 1 | -2/+2 |
| |