Skip to content
Snippets Groups Projects
  1. Dec 15, 2021
    • Matt Harbison's avatar
      pytype: stop excluding wireprotoserver.py · 81805bba
      Matt Harbison authored
      The `config` entry is a 2 part tuple, which has `__iter__()`:
      
        File "/mnt/c/Users/Matt/hg/mercurial/wireprotoserver.py", line 253, in _availableapis:
            No attribute '__iter__' on Callable[[Any, Any], Any] [attribute-error]
          In Union[Callable[[Any, Any, Any, Any, Any], None], Callable[[Any, Any], Any]]
        File "/mnt/c/Users/Matt/hg/mercurial/wireprotoserver.py", line 253, in _availableapis:
            No attribute '__iter__' on Callable[[Any, Any, Any, Any, Any], None] [attribute-error]
          In Union[Callable[[Any, Any, Any, Any, Any], None], Callable[[Any, Any], Any]]
      
      Differential Revision: https://phab.mercurial-scm.org/D11930
      81805bba
  2. Dec 14, 2021
    • Matt Harbison's avatar
      pytype: stop excluding pycompat.py · 12a43f85
      Matt Harbison authored
      Whatever issues were here seem to have been previously fixed.
      
      Differential Revision: https://phab.mercurial-scm.org/D11929
      12a43f85
    • Matt Harbison's avatar
      procutil: avoid an uninitialized variable usage on tempfile exception · f8540fe4
      Matt Harbison authored
      If `pycompat.unnamedtempfile()` raises an exception, it would have called
      `stdin.close()` in the `finally` block without it being initialized first.
      
      Differential Revision: https://phab.mercurial-scm.org/D11928
      f8540fe4
    • Matt Harbison's avatar
      pytype: stop excluding procutil.py · 333a2656
      Matt Harbison authored
      This avoids these false warnings:
      
        File "/mnt/c/Users/Matt/hg/mercurial/utils/procutil.py", line 78, in <module>:
            No attribute 'register' on Type[io.BufferedIOBase] [attribute-error]
        File "/mnt/c/Users/Matt/hg/mercurial/utils/procutil.py", line 117, in <module>:
            No attribute 'register' on Type[io.IOBase] [attribute-error]
        File "/mnt/c/Users/Matt/hg/mercurial/utils/procutil.py", line 770, in runbgcommandpy3:
            No attribute 'close' on int [attribute-error]
          In Union[IO[Union[bytes, str]], int]
      
      Differential Revision: https://phab.mercurial-scm.org/D11927
      333a2656
    • Matt Harbison's avatar
      pytype: stop excluding chgserver.py · 7caaefa4
      Matt Harbison authored
      This teaches pytype about some lazy initialization, and avoids the following:
      
        File "/mnt/c/Users/Matt/hg/mercurial/chgserver.py", line 666, in _checkextensions:
            No attribute '_hashstate' on chgunixservicehandler [attribute-error]
        File "/mnt/c/Users/Matt/hg/mercurial/chgserver.py", line 672, in _checkextensions:
            No attribute '_hashstate' on chgunixservicehandler [attribute-error]
        File "/mnt/c/Users/Matt/hg/mercurial/chgserver.py", line 677, in _bind:
            No attribute '_realaddress' on chgunixservicehandler [attribute-error]
        File "/mnt/c/Users/Matt/hg/mercurial/chgserver.py", line 683, in _bind:
            No attribute '_realaddress' on chgunixservicehandler [attribute-error]
        File "/mnt/c/Users/Matt/hg/mercurial/chgserver.py", line 686, in _createsymlink:
            No attribute '_baseaddress' on chgunixservicehandler [attribute-error]
        File "/mnt/c/Users/Matt/hg/mercurial/chgserver.py", line 686, in _createsymlink:
            No attribute '_realaddress' on chgunixservicehandler [attribute-error]
        File "/mnt/c/Users/Matt/hg/mercurial/chgserver.py", line 688, in _createsymlink:
            No attribute '_baseaddress' on chgunixservicehandler [attribute-error]
        File "/mnt/c/Users/Matt/hg/mercurial/chgserver.py", line 689, in _createsymlink:
            No attribute '_realaddress' on chgunixservicehandler [attribute-error]
        File "/mnt/c/Users/Matt/hg/mercurial/chgserver.py", line 690, in _createsymlink:
            No attribute '_baseaddress' on chgunixservicehandler [attribute-error]
      
      Differential Revision: https://phab.mercurial-scm.org/D11926
      7caaefa4
    • Matt Harbison's avatar
      pytype: stop excluding webcommands.py · ea13dabb
      Matt Harbison authored
      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
      ea13dabb
    • Matt Harbison's avatar
    • Matt Harbison's avatar
      pytype: stop excluding patch.py · 290f9c15
      Matt Harbison authored
      The underlying `email.generator.BytesGenerator` is documented as requiring an
      `fp` that accepts bytes, so I'm not sure why pytype is getting confused:
      
        File "/mnt/c/Users/Matt/hg/mercurial/patch.py", line 112, in msgfp:
            Function Generator.__init__ was called with the wrong arguments [wrong-arg-types]
                 Expected: (self, outfp: TextIO, ...)
          Actually passed: (self, outfp: io.BytesIO, ...)
      
      Differential Revision: https://phab.mercurial-scm.org/D11922
      290f9c15
    • Matt Harbison's avatar
      pytype: stop excluding statprof.py · d2fff292
      Matt Harbison authored
      This seems to have worked fine before (at least on Linux).  We could just add
      suppression comments, but this file already imports from the mercurial package,
      which seems to prevent this from running as a standalone program because of the
      relative import of `pycompat`.  PyCharm isn't happy either way.
      
        File "/mnt/c/Users/Matt/hg/mercurial/statprof.py", line 501, in display:
            Function TextIO.write was called with the wrong arguments [wrong-arg-types]
                 Expected: (self, s: str)
          Actually passed: (self, s: bytes)
        Called from (traceback):
          line 1091, in main
        File "/mnt/c/Users/Matt/hg/mercurial/statprof.py", line 501, in display:
            Function TextIO.write was called with the wrong arguments [wrong-arg-types]
                 Expected: (self, s: str)
          Actually passed: (self, s: bytes)
        Called from (traceback):
          line 431, in profile
        File "/mnt/c/Users/Matt/hg/mercurial/statprof.py", line 522, in display:
            Function TextIO.write was called with the wrong arguments [wrong-arg-types]
                 Expected: (self, s: str)
          Actually passed: (self, s: bytes)
        Called from (traceback):
          line 1091, in main
        File "/mnt/c/Users/Matt/hg/mercurial/statprof.py", line 522, in display:
            Function TextIO.write was called with the wrong arguments [wrong-arg-types]
                 Expected: (self, s: str)
          Actually passed: (self, s: bytes)
        Called from (traceback):
          line 431, in profile
        File "/mnt/c/Users/Matt/hg/mercurial/statprof.py", line 523, in display:
            Function TextIO.write was called with the wrong arguments [wrong-arg-types]
                 Expected: (self, s: str)
          Actually passed: (self, s: bytes)
        Called from (traceback):
          line 1091, in main
        File "/mnt/c/Users/Matt/hg/mercurial/statprof.py", line 523, in display:
            Function TextIO.write was called with the wrong arguments [wrong-arg-types]
                 Expected: (self, s: str)
          Actually passed: (self, s: bytes)
        Called from (traceback):
          line 431, in profile
        File "/mnt/c/Users/Matt/hg/mercurial/statprof.py", line 524, in display:
            Function TextIO.write was called with the wrong arguments [wrong-arg-types]
                 Expected: (self, s: str)
          Actually passed: (self, s: bytes)
        Called from (traceback):
          line 1091, in main
        File "/mnt/c/Users/Matt/hg/mercurial/statprof.py", line 524, in display:
            Function TextIO.write was called with the wrong arguments [wrong-arg-types]
                 Expected: (self, s: str)
          Actually passed: (self, s: bytes)
        Called from (traceback):
          line 431, in profile
        File "/mnt/c/Users/Matt/hg/mercurial/statprof.py", line 796, in _write:
            Function TextIO.write was called with the wrong arguments [wrong-arg-types]
                 Expected: (self, s: str)
          Actually passed: (self, s: bytes)
      
      Differential Revision: https://phab.mercurial-scm.org/D11921
      d2fff292
  3. Dec 13, 2021
  4. Dec 14, 2021
  5. Dec 13, 2021
  6. Dec 07, 2021
  7. Dec 08, 2021
  8. Dec 07, 2021
  9. Nov 07, 2021
  10. Dec 07, 2021
  11. Dec 10, 2021
Loading