commit | dc19f0966195c711407cb710225cab55ba1f4be9 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue May 22 18:01:30 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue May 22 18:01:30 2007 +0000 |
tree | c1c2a0ffeb93d8559d888f8b79016ce917100f39 | |
parent | c49ebc0d07f47336b3720e546876d0f799ef0f50 [diff] |
There's no need to default file to sys.stdout -- print(file=None) already selects sys.stdout.
diff --git a/Lib/zipfile.py b/Lib/zipfile.py index 6cff722..2fb1ea5 100644 --- a/Lib/zipfile.py +++ b/Lib/zipfile.py
@@ -711,8 +711,6 @@ def printdir(self, file=None): """Print a table of contents for the zip file.""" - if file is None: - file = sys.stdout print("%-46s %19s %12s" % ("File Name", "Modified ", "Size"), file=file) for zinfo in self.filelist: