Queued most of the patches in this series, thanks. > - symbol = b''.join(itertools.takewhile(lambda ch: ch not in special, > - view[pos:])) > + symbol = b''.join(pycompat.iterbytestr(itertools.takewhile( > + lambda ch: ch not in special, > + view[pos:]
It's probably better to apply `iterbytestr()` to `view[pos:]` so `ch` is always a byte string. _______________________________________________ Mercurial-devel mailing list [email protected] https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel
