Python 3 porting - Wrap returns from map() in list()
authorZachary Turner <zturner@google.com>
Thu, 22 Oct 2015 20:39:59 +0000 (20:39 +0000)
committerZachary Turner <zturner@google.com>
Thu, 22 Oct 2015 20:39:59 +0000 (20:39 +0000)
commit1c4059a0c430881111c0b2c51cf98fc7fb559eec
treee178b88c11b437dfe084f84140b1eacb38b71df3
parent0d933e0b2720152c86adb9d3d5f10821d28b17b6
Python 3 porting - Wrap returns from map() in list()

Under Python 2 this has no effect, since map() returns a list.
In Python 3 map() returns an iterable, so wrapping in a list is
necessary to keep the same semantics.

llvm-svn: 251060
lldb/test/dosep.py
lldb/test/dotest.py
lldb/test/lldbtest.py
lldb/test/lldbutil.py