* 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
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 @@
 	# 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]