D2456: py3: convert a map expression into list comprehension

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Mon Feb 26 08:12:59 EST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG4223bef1489c: py3: convert a map expression into list comprehension (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D2456?vs=6111&id=6124

REVISION DETAIL
  https://phab.mercurial-scm.org/D2456

AFFECTED FILES
  mercurial/crecord.py

CHANGE DETAILS

diff --git a/mercurial/crecord.py b/mercurial/crecord.py
--- a/mercurial/crecord.py
+++ b/mercurial/crecord.py
@@ -547,7 +547,7 @@
     chunkselector = curseschunkselector(headerlist, ui, operation)
     if testfn and os.path.exists(testfn):
         testf = open(testfn)
-        testcommands = map(lambda x: x.rstrip('\n'), testf.readlines())
+        testcommands = [x.rstrip('\n') for x in testf.readlines()]
         testf.close()
         while True:
             if chunkselector.handlekeypressed(testcommands.pop(0), test=True):



To: pulkit, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list