# HG changeset patch # User Augie Fackler # Date 1508042369 14400 # Node ID 6f532c1a4af0d99cd2cbac5f3c7028c0ba8cb51e # Parent 09397d0dd3b7d25e095d617e6a2ab785f8d980db 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 diff -r 09397d0dd3b7 -r 6f532c1a4af0 mercurial/wireproto.py --- 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=' '):