wireproto: use listcomp instead of map()
authorAugie Fackler <augie@google.com>
Sun, 15 Oct 2017 00:39:29 -0400
changeset 34729 6f532c1a4af0
parent 34728 09397d0dd3b7
child 34730 6be264009841
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
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=' '):