wireproto: use listcomp instead of map()
The latter returns a generator object on Python 3, which breaks
various parts of hg that expected a list.
Differential Revision: https://phab.mercurial-scm.org/D1100
--- a/mercurial/wireproto.py Sun Oct 15 00:37:24 2017 -0400
+++ b/mercurial/wireproto.py Sun Oct 15 00:39:29 2017 -0400
@@ -153,7 +153,7 @@
def decodelist(l, sep=' '):
if l:
- return map(bin, l.split(sep))
+ return [bin(v) for v in l.split(sep)]
return []
def encodelist(l, sep=' '):