summaryrefslogtreecommitdiff
path: root/Lib/ftplib.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-12-14 15:54:01 +0000
committerGuido van Rossum <guido@python.org>1993-12-14 15:54:01 +0000
commite0c6e2b5e7fd43f6ba1b60f88a188bb8f1976e8b (patch)
treee20075e8ef30b26240e4d8816ef213a9dd1ee3b4 /Lib/ftplib.py
parent76080fdbe7ee4167b57ff1eac06d63ec3a0e1ffb (diff)
downloadcpython-e0c6e2b5e7fd43f6ba1b60f88a188bb8f1976e8b.tar.gz
* 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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ftplib.py b/Lib/ftplib.py
index 22852bc435..bfb0b5b2d5 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]