This is an archive of the discontinued Mercurial Phabricator instance.

hgweb: ensure template mapping keys are bytes
ClosedPublic

Authored by indygreg on Jan 23 2019, 8:28 PM.

Details

Summary

Before, str keys were being added in Python 3 because named
arguments to dict() use native str for keys. This caused the
templater to fail to find the keys since it was looking for
bytes versions.

This makes a handful of tests pass on Python 3.

We may want to consider having the templater validate that keys
in mapping dicts are bytes. But I'm unsure whether this is
appropriate and won't be doing this.

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.

Event Timeline

indygreg created this revision.Jan 23 2019, 8:28 PM
durin42 accepted this revision.Jan 23 2019, 9:21 PM
This revision is now accepted and ready to land.Jan 23 2019, 9:21 PM
This revision was automatically updated to reflect the committed changes.