mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Merged revisions 79603 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79603 | andrew.kuchling | 2010-04-02 12:59:16 -0400 (Fri, 02 Apr 2010) | 1 line #4440: modernize a use of filter(), making it compatible with 3.x ........
This commit is contained in:
parent
9679859890
commit
0a62823d81
1 changed files with 1 additions and 1 deletions
|
@ -636,7 +636,7 @@ if __name__ == '__main__':
|
|||
|
||||
def do_sort(self, line):
|
||||
abbrevs = self.stats.get_sort_arg_defs()
|
||||
if line and not filter(lambda x,a=abbrevs: x not in a,line.split()):
|
||||
if line and all((x in abbrevs) for x in line.split()):
|
||||
self.stats.sort_stats(*line.split())
|
||||
else:
|
||||
print("Valid sort keys (unique prefixes are accepted):", file=self.stream)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue