diff options
author | Guido van Rossum <guido@python.org> | 1993-12-14 15:54:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-12-14 15:54:01 (GMT) |
commit | 79c85f1778c31ebdae09d2e2802e15e7d4f237b9 (patch) | |
tree | 93c7c6f1fe76c63b9400b4ee55d4d8bedb79bfb8 /Lib/ftplib.py | |
parent | 6930b3d18da1ce43d5a0c8099df66b8c59490465 (diff) | |
download | cpython-79c85f1778c31ebdae09d2e2802e15e7d4f237b9.zip cpython-79c85f1778c31ebdae09d2e2802e15e7d4f237b9.tar.gz cpython-79c85f1778c31ebdae09d2e2802e15e7d4f237b9.tar.bz2 |
* wdbframewin.py (re_eval): set __privileged__ in globals so private
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
Diffstat (limited to 'Lib/ftplib.py')
-rw-r--r-- | Lib/ftplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ftplib.py b/Lib/ftplib.py index 22852bc..bfb0b5b 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -283,7 +283,7 @@ class FTP: # The callback function is called for each line, with trailing # CRLF stripped. This creates a new port for you. # print_lines is the default callback - def retrlines(self, cmd, args): + def retrlines(self, cmd, *args): callback = None if args: callback = args[0] |