mercurial/mdiff.py
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):
Thu, 03 Mar 2022 17:34:00 +0100 Gregory Szorc py2: remove simple from __future__ statements
Fri, 19 Nov 2021 15:38:36 -0800 Martin von Zweigbergk errors: use detailed exit code for non-integer number of diff context lines
Thu, 25 Mar 2021 18:02:08 +0100 Raphaël Gomès contributor: change mentions of mpm to olivia
Fri, 27 Nov 2020 17:03:29 -0500 Augie Fackler formating: upgrade to black 20.8b1
Mon, 16 Nov 2020 16:25:04 -0800 Martin von Zweigbergk errors: raise InputError when line range to followlines() is out of bounds
Fri, 17 Jul 2020 03:53:19 -0700 Rodrigo Damazio Bovendorp diff: move no-eol text constant to a common location
Fri, 06 Mar 2020 13:27:41 -0500 Augie Fackler cleanup: run pyupgrade on our source tree to clean up varying things
Fri, 08 Nov 2019 11:19:20 -0800 Augie Fackler cleanup: remove pointless r-prefixes on single-quoted strings
Wed, 06 Nov 2019 15:35:21 -0500 Augie Fackler mdiff: mark diffopts as having dynamic attributes
Tue, 08 Oct 2019 15:06:18 -0700 Martin von Zweigbergk cleanup: join string literals that are already on one line
Sun, 06 Oct 2019 16:55:18 -0400 Gregory Szorc py3: manually import getattr where it is needed
Sun, 06 Oct 2019 14:58:42 -0400 Gregory Szorc py3: manually import pycompat.setattr where it is needed
Sun, 06 Oct 2019 09:48:39 -0400 Augie Fackler formatting: byteify all mercurial/ and hgext/ string literals
Sun, 06 Oct 2019 09:45:02 -0400 Augie Fackler formatting: blacken the codebase
Wed, 01 Aug 2018 13:00:45 -0700 Gregory Szorc global: use pycompat.xrange()
Thu, 05 Apr 2018 17:29:32 +0530 Pulkit Goyal py3: add missing b'' prefix in mdiff.py
Thu, 05 Apr 2018 17:15:52 +0530 Pulkit Goyal py3: fix error string with bytestr() on repr()d value
Sat, 03 Mar 2018 12:39:14 -0800 Jun Wu mdiff: add a config option to use xdiff algorithm
Sat, 03 Mar 2018 11:26:30 -0500 Gregory Szorc cext: accept arguments as Py_buffer
Sat, 03 Mar 2018 07:24:25 -0500 Yuya Nishihara py3: do not pass a memoryview to bdiff.bdiff()
Thu, 15 Feb 2018 17:18:26 +0100 Boris Feld util: extract all date-related utils in utils/dateutil module
Fri, 23 Feb 2018 23:09:58 +0900 Yuya Nishihara diff: do not split function name if character encoding is unknown
Thu, 25 Jan 2018 21:16:28 -0500 Augie Fackler bdiff: write a native version of splitnewlines
Sun, 04 Feb 2018 10:33:14 +0900 Yuya Nishihara mdiff: use str.startswith/endswith() instead of slicing
Sun, 04 Feb 2018 10:28:03 +0900 Yuya Nishihara patch: unify check_binary and binary flags
Wed, 07 Feb 2018 13:11:38 +0530 Pulkit Goyal py3: use pycompat.bytechr instead of chr
Thu, 01 Feb 2018 18:14:52 -0500 Augie Fackler mdiff: use slice instead of index on bytestr when checking single bytes
Fri, 26 Jan 2018 17:31:50 +0100 Joerg Sonnenberger mdiff: remove rewindhunk by yielding a bool first to indicate data
Fri, 26 Jan 2018 02:14:39 +0100 Joerg Sonnenberger mdiff: explicitly compute places for the newline marker
Thu, 25 Jan 2018 22:40:19 +0100 Joerg Sonnenberger patch: avoid repeated binary checks if all files in a patch are text
Fri, 29 Dec 2017 05:28:05 +0530 Pulkit Goyal py3: make regular expressions bytes by prepending b''
Fri, 29 Dec 2017 05:27:00 +0530 Pulkit Goyal py3: slice on bytes instead of indexing
Thu, 26 Oct 2017 00:13:38 +0900 Matthieu Laneuville patch: add within-line color diff capacity
Mon, 02 Oct 2017 04:48:06 +0530 Pulkit Goyal py3: use '%d' for integers instead of '%s'
Tue, 29 Aug 2017 18:20:50 -0700 David Soria Parra mdiff: add a --ignore-space-at-eol option
Tue, 27 Jun 2017 00:23:32 +0530 Pulkit Goyal py3: use pycompat.strkwargs() to convert kwargs keys to str
Sat, 13 Aug 2016 12:18:58 +0900 Yuya Nishihara mpatch: switch to policy importer
Sat, 13 Aug 2016 12:12:50 +0900 Yuya Nishihara bdiff: switch to policy importer
Wed, 26 Apr 2017 22:03:37 +0900 Yuya Nishihara bdiff: proxy through mdiff module
Wed, 26 Apr 2017 21:56:47 +0900 Yuya Nishihara base85: proxy through util module
Tue, 02 May 2017 17:05:22 +0900 Yuya Nishihara mdiff: move re-exports to top
Sat, 01 Apr 2017 12:24:59 +0200 Denis Laxalde mdiff: add a hunkinrange helper function
Sun, 26 Mar 2017 20:52:51 +0530 Pulkit Goyal diff: slice over bytes to make sure conditions work normally
Sun, 26 Mar 2017 20:58:21 +0530 Pulkit Goyal diff: use pycompat.{byteskwargs, strkwargs} to switch opts b/w bytes and str
Fri, 03 Mar 2017 17:46:40 +0100 Denis Laxalde mdiff: let unidiff return (diffheader, hunks)
Fri, 03 Mar 2017 17:46:28 +0100 Denis Laxalde mdiff: extract a checknonewline inner function in unidiff()
Fri, 03 Mar 2017 13:51:22 +0100 Denis Laxalde mdiff: distinguish diff headers from hunks in unidiff()
Thu, 02 Mar 2017 17:22:46 +0100 Denis Laxalde mdiff: let _unidiff yield hunks as (<range information>, <hunk lines>)
Mon, 09 Jan 2017 09:34:39 +0100 Denis Laxalde mdiff: turn the comment above _unidiff into a docstring
Tue, 27 Sep 2016 20:27:35 +0200 Denis Laxalde mdiff: compute newlines-splitted texts within _unidiff
Mon, 09 Jan 2017 10:51:44 -0800 Sean Farley patch: add similarity config knob in experimental section
Mon, 09 Jan 2017 11:13:47 -0800 Sean Farley patch: add config knob for displaying the index header
Tue, 03 Jan 2017 18:15:58 +0100 Denis Laxalde mdiff: add a "blocksinrange" function to filter diff blocks by line range
Tue, 27 Sep 2016 14:46:34 +0200 Philippe Pepiot mdiff: remove unused parameter 'refine' from allblocks()
Sat, 25 Jun 2016 13:52:46 -0700 Gregory Szorc mdiff: remove use of __slots__
Mon, 11 Jan 2016 22:00:07 -0500 Mike Hommey mdiff: don't emit a diff header for empty trivial deltas
Mon, 21 Dec 2015 21:26:14 -0800 Gregory Szorc mdiff: use absolute_import
Thu, 08 Oct 2015 12:55:45 -0700 Pierre-Yves David error: get Abort from 'error' instead of 'util'
less more (0) -100 -60 tip