D3727: hgweb: insist http_status value is a sysstr

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Wed Jun 13 01:09:19 UTC 2018


durin42 created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  My previous change was extremely confusing to figure out, because I
  thought I was looking at a client-side problem. For the low cost of an
  isinstance assert, we can make those errors not happen in the future.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D3727

AFFECTED FILES
  mercurial/hgweb/server.py

CHANGE DETAILS

diff --git a/mercurial/hgweb/server.py b/mercurial/hgweb/server.py
--- a/mercurial/hgweb/server.py
+++ b/mercurial/hgweb/server.py
@@ -215,6 +215,7 @@
         self.sent_headers = True
 
     def _start_response(self, http_status, headers, exc_info=None):
+        assert isinstance(http_status, str)
         code, msg = http_status.split(None, 1)
         code = int(code)
         self.saved_status = http_status



To: durin42, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list