# HG changeset patch # User Matt Harbison # Date 1672966055 18000 # Node ID 2b8ead6bbb77aeef7305382506095e0085b63b38 # Parent e90767a71dc097b0cbe44e37aaf83faac8c178d6 sparse: fix a py2 based usage of `map()` In a local pytype run, this fixes: File "/mnt/c/Users/Matt/hg/hgext/sparse.py", line 386, in debugsparse: unsupported operand type(s) for item retrieval: 'fcounts: Iterator[int]' and '0: int' [unsupported-operands] No attribute '__getitem__' on 'fcounts: Iterator[int]' File "/mnt/c/Users/Matt/hg/hgext/sparse.py", line 387, in debugsparse: unsupported operand type(s) for item retrieval: 'fcounts: Iterator[int]' and '1: int' [unsupported-operands] No attribute '__getitem__' on 'fcounts: Iterator[int]' File "/mnt/c/Users/Matt/hg/hgext/sparse.py", line 388, in debugsparse: unsupported operand type(s) for item retrieval: 'fcounts: Iterator[int]' and '2: int' [unsupported-operands] No attribute '__getitem__' on 'fcounts: Iterator[int]' diff -r e90767a71dc0 -r 2b8ead6bbb77 hgext/sparse.py --- a/hgext/sparse.py Thu Jan 05 17:38:14 2023 -0500 +++ b/hgext/sparse.py Thu Jan 05 19:47:35 2023 -0500 @@ -374,7 +374,7 @@ if refresh: try: wlock = repo.wlock() - fcounts = map( + fcounts = pycompat.maplist( len, sparse.refreshwdir( repo, repo.status(), sparse.matcher(repo), force=force