log mercurial/mdiff.py @ 53042:cdd7bf612c7b stable tip

age author description
Sun, 05 Jan 2025 22:26:16 -0500 Matt Harbison pyupgrade: rewrite `yield` statements in a loop to `yield from`
Sat, 05 Oct 2024 18:58:20 -0400 Matt Harbison interfaces: introduce and use a protocol class for the `mpatch` module
Mon, 30 Sep 2024 19:40:14 -0400 Matt Harbison typing: add type annotations to `mercurial/mdiff.py`
Mon, 30 Sep 2024 23:50:40 -0400 Matt Harbison mdiff: convert a few block definitions from lists to tuples
Sun, 29 Sep 2024 02:03:20 -0400 Matt Harbison interfaces: add the optional `bdiff.xdiffblocks()` method
Sat, 28 Sep 2024 19:12:18 -0400 Matt Harbison interfaces: introduce and use a protocol class for the `bdiff` module
Sat, 28 Sep 2024 19:11:39 -0400 Matt Harbison mdiff: tweak calls into `bdiff.fixws` to match its type hints
Mon, 16 Sep 2024 15:36:44 +0200 Matt Harbison typing: add `from __future__ import annotations` to most files
Fri, 01 Sep 2023 00:09:55 +0200 Pierre-Yves David pycompat: drop usage of hasattr/getattr/setattr/delatt proxy
Thu, 31 Aug 2023 23:56:15 +0200 Pierre-Yves David safehasattr: drop usage in favor of hasattr
Thu, 31 Aug 2023 01:19:49 +0200 Pierre-Yves David diff-option: move attributes handling to sysstr
Thu, 02 Feb 2023 17:32:38 +0100 Pierre-Yves David safehasattr: pass attribute name as string instead of bytes
Mon, 09 Jan 2023 14:34:19 -0500 Matt Harbison mdiff: add a __str__ method to diffopts
Sun, 29 May 2022 15:17:27 +0200 Manuel Jacob py3: replace `pycompat.xrange` by `range`
Mon, 21 Feb 2022 13:08:28 -0700 Gregory Szorc py3: use class X: instead of class X(object):