From patchwork Thu Mar 1 09:35:56 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D2507: py3: make sure we open the file in bytes mode From: phabricator X-Patchwork-Id: 28537 Message-Id: To: mercurial-devel@mercurial-scm.org Date: Thu, 1 Mar 2018 09:35:56 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHGe21713991260: py3: make sure we open the file in bytes mode (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D2507?vs=6207&id=6239 REVISION DETAIL https://phab.mercurial-scm.org/D2507 AFFECTED FILES tests/test-revlog-ancestry.py CHANGE DETAILS To: pulkit, #hg-reviewers Cc: mercurial-devel diff --git a/tests/test-revlog-ancestry.py b/tests/test-revlog-ancestry.py --- a/tests/test-revlog-ancestry.py +++ b/tests/test-revlog-ancestry.py @@ -15,7 +15,7 @@ repo.commit(text=text, date=b"%d 0" % time) def addcommit(name, time): - f = open(name, 'w') + f = open(name, 'wb') f.write(b'%s\n' % name) f.close() repo[None].add([name])