#14603: use a listcomp in ZipFile.namelist.

This commit is contained in:
Ezio Melotti 2012-04-16 21:34:24 -06:00
parent 578393b286
commit 006917ec7f
1 changed files with 1 additions and 4 deletions

View File

@ -836,10 +836,7 @@ class ZipFile:
def namelist(self):
"""Return a list of file names in the archive."""
l = []
for data in self.filelist:
l.append(data.filename)
return l
return [data.filename for data in self.filelist]
def infolist(self):
"""Return a list of class ZipInfo instances for files in the