This is an archive of the discontinued Mercurial Phabricator instance.

pycompat: allow pycompat.sysbytes() even if input already is bytes
ClosedPublic

Authored by martinvonz on Dec 12 2019, 6:44 PM.

Details

Summary

pycompat.sysstr() on py3 accepts an input that's already str
(i.e. unicode). This patch makes it so pycompat.sysbytes() on py3
accepts an input that's already bytes. Allowing that makes it possible
to do pycompat.sysbytes(fp.name) where fp.name is either bytes or
unicode, as we'll get when fp can come from either open() or
resources.open_binary().

Diff Detail

Repository
rHG Mercurial
Lint
Automatic diff as part of commit; lint not applicable.
Unit
Automatic diff as part of commit; unit tests not applicable.