This is an archive of the discontinued Mercurial Phabricator instance.

py3: use `b'%d' % int` instead of pycompat.bytestr
AbandonedPublic

Authored by pulkit on Jun 10 2018, 6:32 AM.

Details

Reviewers
None
Group Reviewers
hg-reviewers

Diff Detail

Repository
rHG Mercurial
Lint
Lint Skipped
Unit
Unit Tests Skipped

Event Timeline

pulkit created this revision.Jun 10 2018, 6:32 AM
yuja added a subscriber: yuja.Jun 10 2018, 11:01 AM
except KeyError:
  • return pycompat.bytestr(uid)

+ return b'%d' % uid

Folded this with D3706, thanks.

pulkit abandoned this revision.Jun 14 2018, 7:48 AM