tests/test-status-inprocess.py.out
author Gregory Szorc <gregory.szorc@gmail.com>
Fri, 09 Nov 2018 23:49:39 +0000
branchstable
changeset 40434 6107d4549fcc
parent 10838 07dbafd3a0e2
permissions -rw-r--r--
hgweb: cast bytearray to bytes PEP-3333 seems to indicate that bytes is the only allowed type that can be used to express the output of a WSGI application. And some WSGI environments seem to enforce this (mod_wsgi does). This commit universally casts bytearray instances to bytes to appease the WSGI specification. I found this because wireprotov2 is emitting bytearray instances. I'd like to keep things that way because the way it builds a data structure, bytearray is more efficient. I'd rather keep the low-level code efficient (and using bytearray) and cast at the edges than impose a performance penalty on code that may run outside WSGI contexts.

% creating repo
% add and commit
C test.py
% change
M test.py