D2044: py3: use open() instead of file()

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Mon Feb 5 09:27:36 EST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGe35616bb6ede: py3: use open() instead of file() (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D2044?vs=5202&id=5215

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

AFFECTED FILES
  hgext/mq.py

CHANGE DETAILS

diff --git a/hgext/mq.py b/hgext/mq.py
--- a/hgext/mq.py
+++ b/hgext/mq.py
@@ -281,7 +281,7 @@
         nodeid = None
         diffstart = 0
 
-        for line in file(pf):
+        for line in open(pf, 'rb'):
             line = line.rstrip()
             if (line.startswith('diff --git')
                 or (diffstart and line.startswith('+++ '))):



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


More information about the Mercurial-devel mailing list