diff options
author | Georg Brandl <georg@python.org> | 2008-05-16 17:02:34 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-16 17:02:34 (GMT) |
commit | bf82e374ee737992235cbe944c9ddbd58236a892 (patch) | |
tree | f8c8dccaa76d58f9cb7d8cc0abb1355be75ee369 /Tools/pybench/CommandLine.py | |
parent | acbca71ea775fc488bead0876d0cdbd48670dcbc (diff) | |
download | cpython-bf82e374ee737992235cbe944c9ddbd58236a892.zip cpython-bf82e374ee737992235cbe944c9ddbd58236a892.tar.gz cpython-bf82e374ee737992235cbe944c9ddbd58236a892.tar.bz2 |
More 2to3 fixes in the Tools directory. Fixes #2893.
Diffstat (limited to 'Tools/pybench/CommandLine.py')
-rw-r--r-- | Tools/pybench/CommandLine.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/pybench/CommandLine.py b/Tools/pybench/CommandLine.py index d0142f8..d6ef0be 100644 --- a/Tools/pybench/CommandLine.py +++ b/Tools/pybench/CommandLine.py @@ -537,9 +537,9 @@ class Application: if not options: print(' None') return - long = filter(lambda x: x.prefix == '--', options) - short = filter(lambda x: x.prefix == '-', options) - items = short + long + int = [x for x in options if x.prefix == '--'] + short = [x for x in options if x.prefix == '-'] + items = short + int for o in options: print(' ',o) print() |