D271: obsolete: use bytes() instead of str() so the node is bytes on py3
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Wed Aug 9 14:24:34 UTC 2017
durin42 updated this revision to Diff 675.
durin42 retitled this revision from "obsolete: use bytestr() instead of str() so the node is bytes on py3" to "obsolete: use bytes() instead of str() so the node is bytes on py3".
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D271?vs=636&id=675
REVISION DETAIL
https://phab.mercurial-scm.org/D271
AFFECTED FILES
mercurial/obsolete.py
CHANGE DETAILS
diff --git a/mercurial/obsolete.py b/mercurial/obsolete.py
--- a/mercurial/obsolete.py
+++ b/mercurial/obsolete.py
@@ -583,7 +583,7 @@
metadata = tuple(sorted(metadata.iteritems()))
- marker = (str(prec), tuple(succs), int(flag), metadata, date, parents)
+ marker = (bytes(prec), tuple(succs), int(flag), metadata, date, parents)
return bool(self.add(transaction, [marker]))
def add(self, transaction, markers):
To: durin42, #hg-reviewers, quark
Cc: yuja, mercurial-devel
More information about the Mercurial-devel
mailing list