D12307: hgweb: simplify uenv assignment
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Wed Mar 2 23:31:48 UTC 2022
indygreg created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
We don't need the Python 3 conditional. We can call items() directly
since we're on Python 3 now.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D12307
AFFECTED FILES
mercurial/hgweb/hgwebdir_mod.py
CHANGE DETAILS
diff --git a/mercurial/hgweb/hgwebdir_mod.py b/mercurial/hgweb/hgwebdir_mod.py
--- a/mercurial/hgweb/hgwebdir_mod.py
+++ b/mercurial/hgweb/hgwebdir_mod.py
@@ -460,12 +460,9 @@
if real:
# Re-parse the WSGI environment to take into account our
# repository path component.
- uenv = req.rawenv
- if pycompat.ispy3:
- uenv = {
- k.decode('latin1'): v
- for k, v in pycompat.iteritems(uenv)
- }
+ uenv = {
+ k.decode('latin1'): v for k, v in req.rawenv.items()
+ }
req = requestmod.parserequestfromenv(
uenv,
reponame=virtualrepo,
To: indygreg, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list