Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Add warning to Netrc's docstring that it is obsolete -- use the netrc | Guido van Rossum | 1998-12-22 |
| | | | | | module instead. (The main advantage of the latter is that it comes with documentation.) | ||
* | Typo discovered by Just. | Guido van Rossum | 1998-12-21 |
| | |||
* | According to Robin Dunn, at least one FTP server returns 200 instead | Guido van Rossum | 1998-07-02 |
| | | | | of 250 on a successful delete. | ||
* | parse150(): Simplify RE used to parse the message a little, taking advantage | Fred Drake | 1998-04-27 |
| | | | | of using re instead of regex. | ||
* | A few lines were indented using spaces instead of tabs -- fix them. | Guido van Rossum | 1998-03-26 |
| | |||
* | Add rmd() (remove directory command); fix comment in parse257. | Guido van Rossum | 1998-02-19 |
| | | | | | 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 |
| | |||
* | Use re instead of regex. Also remove bogus return statement from __init__(). | Guido van Rossum | 1997-10-22 |
| | |||
* | Return the error code from most commands, rather than swallowing it. | Guido van Rossum | 1997-10-07 |
| | | | | | 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 |
| | | | | I discussed to the original version way-back-when. | ||
* | Added Fred Drake's netrc parser class. | Guido van Rossum | 1997-03-14 |
| | |||
* | (ftplib.py): Added parse150() function and FTP.ntransfercmd(). This allows | Fred Drake | 1997-01-10 |
| | | | | access to the expected size of a transfer when available. | ||
* | Always open file objects in binary mode. | Guido van Rossum | 1996-09-30 |
| | |||
* | Docstringified and PASV support by Siebren (including new ftpcp() function). | Guido van Rossum | 1996-05-28 |
| | |||
* | Changed makefile() args from r/w to rb/wb, for non-unix compatability. | Jack Jansen | 1996-02-14 |
| | |||
* | add acct() method to send new account name | Guido van Rossum | 1996-01-25 |
| | |||
* | add delete() method to ftp object | Guido van Rossum | 1995-10-11 |
| | |||
* | actualized example, catch EOFError, print retrieved lines if debugging>2 | Guido van Rossum | 1995-09-30 |
| | |||
* | new sendport() interface; add test() program call | Guido van Rossum | 1995-08-04 |
| | |||
* | add bind(0,''); better way of guessing our fully qualified hostname | Guido van Rossum | 1995-06-20 |
| | |||
* | don't show print passwords in debug output | Guido van Rossum | 1995-05-05 |
| | |||
* | For anonymous ftp, make sure local hostname is fully qualified. | Jack Jansen | 1995-05-04 |
| | |||
* | Always use 'anonymous' if os.environ doesn't exist | Jack Jansen | 1995-01-19 |
| | |||
* | Merge alpha100 branch back to main trunk | Guido van Rossum | 1994-08-01 |
| | |||
* | * Mass change: get rid of all init() methods, in favor of __init__() | Guido van Rossum | 1993-12-17 |
| | | | | | | | constructors. There is no backward compatibility. Not everything has been tested. * aiff.{py,doc}: deleted in favor of aifc.py (which contains its docs as comments) | ||
* | * wdbframewin.py (re_eval): set __privileged__ in globals so private | Guido van Rossum | 1993-12-14 |
| | | | | | | | variables can still be seen by the debugger * ftplib.py (retrlines): args should be *args. * ChangeLog: entries for Sjoerd's addition sunau.py and changes to aiff.py * test_md5.py: test program for built-in md5 module | ||
* | * test_*.py: new lambda syntax (also affects tests for filter, map, | Guido van Rossum | 1993-11-30 |
| | | | | | | | | | | reduce) * ftplib.py: added default callback for retrlines; added dir() method * ftplib.py: don't return self in self.connect(); added hack so that if 'CDUP' is not understood, 'CWD ..' is tried. * ftplib.py: second method called init() should have been called connect(); if __init__ sees more than one argument, it will also try to login(). | ||
* | * string.py: added rindex(), rfind(); changed index() to interpret | Guido van Rossum | 1993-11-08 |
| | | | | | | | | | | | negative start indices starting from the right. * ftplib.py: debug() -> set_debuglevel(); change demo to use __init__(). * os.py: added execl, execlp, and execvp. * lambda.py: removed (now that we have built-in map, reduce, bagof, lambda) * test_b{1,2}.py, testall.out: added tests for bagof, lambda, map, reduce * commands.py: use os, not posix * test_grammar.py: make it easy to disable non-portable int overflow tests * dis.py: don't abuse range() | ||
* | * posixpath.py: Fix border cases in normpath ('/foo/..' should return '/') | Guido van Rossum | 1993-07-06 |
| | | | | | * ftplib.py: made cwd() use 'CDUP' when dirname is '..' * FL.py: added new constant FL_PLACE_FULLSCREEN | ||
* | * calendar.py: minor cleanups | Guido van Rossum | 1993-06-17 |
| | | | | | * ftplib.py: support __init__ with optional host, port args * aifc.py: ensure header is written on close even when no data is written | ||
* | * toaiff.py: import whatsound instead of sndhdr | Guido van Rossum | 1993-06-01 |
| | | | | | | * sndhdr.py: renamed to whatsound.py; use new aifc module for AIFF/AIFC * ftplib.py: added close() (closes without sending QUIT command) * aifc.py: documented close() | ||
* | * ftplib.py: added abort() command (sends oob data). | Guido van Rossum | 1993-05-24 |
| | | | | | | * Several modules: change "class C(): ..." to "class C: ...". * flp.py: support for frozen forms. * Added string.find() which is like index but returns -1 if not found | ||
* | Added cwd() | Guido van Rossum | 1993-05-17 |
| | |||
* | Added all_errors, list of all possible exceptions. | Guido van Rossum | 1992-11-06 |
| | |||
* | Use getsockname() if it exists | Guido van Rossum | 1992-11-05 |
| | |||
* | Added much functionality, changed some names (errors, login). | Guido van Rossum | 1992-11-05 |
| | |||
* | Initial revision | Guido van Rossum | 1992-11-04 |