Git subrepo tests now pass on Python 3.
Details
Details
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Lint Skipped - Unit
Unit Tests Skipped
Event Timeline
Comment Actions
- retdata = p.stdout.read().strip()
+ retdata = pycompat.fsencode(p.stdout.read().strip())
Curious why subprocess output can be a unicode. Is it a sort of text-mode
stream?