mirror of
https://github.com/python/cpython.git
synced 2025-08-27 04:05:34 +00:00
* 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
This commit is contained in:
parent
6930b3d18d
commit
79c85f1778
4 changed files with 27 additions and 1 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue