# HG changeset patch # User Matt Harbison # Date 1639453603 18000 # Node ID ea13dabbe1680220c004353c799586ef463b4422 # Parent 8a075b6799189b991c8f95d670b5a4311ef67965 pytype: stop excluding webcommands.py I have no idea why, but asserting that each value added to `emptydirs` is not None didn't fix this: File "/mnt/c/Users/Matt/hg/mercurial/hgweb/webcommands.py", line 621, in dirlist: Function bytes.join was called with the wrong arguments [wrong-arg-types] Expected: (self, iterable: Iterable[bytes]) Actually passed: (self, iterable: List[None]) Differential Revision: https://phab.mercurial-scm.org/D11924 diff -r 8a075b679918 -r ea13dabbe168 mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py Mon Dec 13 20:45:31 2021 -0500 +++ b/mercurial/hgweb/webcommands.py Mon Dec 13 22:46:43 2021 -0500 @@ -519,6 +519,7 @@ def decodepath(path): + # type: (bytes) -> bytes """Hook for mapping a path in the repository to a path in the working copy. @@ -616,7 +617,9 @@ yield { b"parity": next(parity), b"path": path, + # pytype: disable=wrong-arg-types b"emptydirs": b"/".join(emptydirs), + # pytype: enable=wrong-arg-types b"basename": d, } diff -r 8a075b679918 -r ea13dabbe168 tests/test-check-pytype.t --- a/tests/test-check-pytype.t Mon Dec 13 20:45:31 2021 -0500 +++ b/tests/test-check-pytype.t Mon Dec 13 22:46:43 2021 -0500 @@ -18,7 +18,6 @@ mercurial/exchange.py # [attribute-error] mercurial/hgweb/hgweb_mod.py # [attribute-error], [name-error], [wrong-arg-types] mercurial/hgweb/server.py # [attribute-error], [name-error], [module-attr] -mercurial/hgweb/webcommands.py # [missing-parameter] mercurial/hgweb/wsgicgi.py # confused values in os.environ mercurial/httppeer.py # [attribute-error], [wrong-arg-types] mercurial/interfaces # No attribute 'capabilities' on peer [attribute-error] @@ -55,7 +54,6 @@ > -x mercurial/exchange.py \ > -x mercurial/hgweb/hgweb_mod.py \ > -x mercurial/hgweb/server.py \ - > -x mercurial/hgweb/webcommands.py \ > -x mercurial/hgweb/wsgicgi.py \ > -x mercurial/httppeer.py \ > -x mercurial/interfaces \