comparison mercurial/scmutil.py @ 52669:e627cc25b6f3

pyupgrade: rewrite `yield` statements in a loop to `yield from` This is the `legacy` fixer in `pyupgrade`, with the `yield` statement yielding loop commented back in. This seems to help pytype in some cases, and hurt it in others. But that can be manually fixed later. Note that it's possibly buggy in that it aggressively changed `import-checker.py` to `yield from 'fcntl', 'grp', 'pwd', 'select', 'termios': # Unix only`, which is invalid syntax. Possibly it needed help from the token fixer that I've disabled locally (because that wants to make a bunch of unrelated changes). Just change those few places to yield from a list, to avoid having to constantly revert that.
author Matt Harbison <matt_harbison@yahoo.com>
date Sun, 05 Jan 2025 22:26:16 -0500
parents 24ee91ba9aa8
children 4cb75772818d
comparison
equal deleted inserted replaced
52668:5cc8deb96b48 52669:e627cc25b6f3
512 newdirs = [] 512 newdirs = []
513 for d in dirs: 513 for d in dirs:
514 fname = os.path.join(root, d) 514 fname = os.path.join(root, d)
515 if adddir(seen_dirs, fname): 515 if adddir(seen_dirs, fname):
516 if os.path.islink(fname): 516 if os.path.islink(fname):
517 for hgname in walkrepos(fname, True, seen_dirs): 517 yield from walkrepos(fname, True, seen_dirs)
518 yield hgname
519 else: 518 else:
520 newdirs.append(d) 519 newdirs.append(d)
521 dirs[:] = newdirs 520 dirs[:] = newdirs
522 521
523 522