summaryrefslogtreecommitdiffstats
path: root/test/SWIG/SWIGCOMSTR.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/SWIG/SWIGCOMSTR.py')
-rw-r--r--test/SWIG/SWIGCOMSTR.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SWIG/SWIGCOMSTR.py b/test/SWIG/SWIGCOMSTR.py
index 739c781..1df3499 100644
--- a/test/SWIG/SWIGCOMSTR.py
+++ b/test/SWIG/SWIGCOMSTR.py
@@ -42,7 +42,7 @@ import sys
outfile = open(sys.argv[1], 'wb')
for f in sys.argv[2:]:
infile = open(f, 'rb')
- for l in filter(lambda l: l != '/*swig*/\\n', infile.readlines()):
+ for l in [l for l in infile.readlines() if l != '/*swig*/\\n']:
outfile.write(l)
sys.exit(0)
""")