mercurial/patch.py
Mon, 04 Feb 2019 08:59:11 -0800 Gregory Szorc patch: properly escape \ in string literals
Mon, 04 Feb 2019 08:54:30 -0800 Gregory Szorc global: use raw strings for regular expressions with escapes
Thu, 31 Jan 2019 16:51:52 -0800 Martin von Zweigbergk diff: drop duplicate filter of copies by destination
Thu, 31 Jan 2019 16:32:54 -0800 Martin von Zweigbergk diff: use match.intersectmatchers()
Mon, 28 Jan 2019 18:00:14 -0800 Kyle Lippincott patch: handle 0 context lines (diff.unified=0) when parsing patches
Sat, 26 Jan 2019 13:14:21 +0530 Navaneeth Suresh diffstat: support filenames with whitespaces on renames
Thu, 17 Jan 2019 18:05:54 +0530 Navaneeth Suresh diffstat: make --git work properly on renames (issue6025)
Thu, 17 Jan 2019 09:17:12 -0800 Martin von Zweigbergk cleanup: delete lots of unused local variables
Sun, 14 Oct 2018 09:24:36 +0000 Mark Thomas py3: fix test-diff-color.t
Fri, 14 Sep 2018 23:59:41 +0300 Pulkit Goyal py3: slice through bytes to prevent getting ascii value
Wed, 01 Aug 2018 13:00:45 -0700 Gregory Szorc global: use pycompat.xrange()
Fri, 27 Jul 2018 14:48:34 -0700 Martin von Zweigbergk patch: use ctx1.status(ctx2) instead of repo.status(ctx1, ctx2)
Tue, 10 Jul 2018 13:18:34 +0200 Sune Foldager patch: don't separate \r and \n when colorizing diff output
Fri, 06 Jul 2018 21:49:25 +0900 Yuya Nishihara diffutil: move the module out of utils package
Fri, 06 Jul 2018 21:41:36 +0900 Yuya Nishihara diffutil: remove diffopts() in favor of diffallopts()
Thu, 28 Jun 2018 16:11:13 +0200 Boris Feld diffutil: extract diff options code into a dedicated util-module
Thu, 28 Jun 2018 18:07:22 -0700 Kyle Lippincott unlinkpath: make empty directory removal optional (issue5901) (issue5826)
Sat, 16 Jun 2018 19:31:07 +0900 Yuya Nishihara py3: ditch email.parser.BytesParser which appears to be plain crap
Sat, 16 Jun 2018 17:53:51 +0900 Yuya Nishihara py3: replace s[-1] with s.endswith() in eol handling
Sat, 26 May 2018 12:20:36 +0900 Yuya Nishihara py3: wrap tempfile.mkdtemp() to use bytes path
Sat, 26 May 2018 12:14:04 +0900 Yuya Nishihara py3: wrap tempfile.mkstemp() to use bytes path
Sat, 19 May 2018 15:14:56 -0400 Augie Fackler patch: add debug message to show external patch tool invocation
Sat, 19 May 2018 18:51:14 +0530 Pulkit Goyal py3: bytestr() bytes to get bytechar while iterating on it
Sat, 19 May 2018 18:49:07 +0530 Pulkit Goyal py3: slice over bytes to prevent getting the ascii values
Fri, 18 May 2018 19:54:50 -0400 Augie Fackler patch: fix import-time syntax error in test-check-module-imports.t
Sat, 19 May 2018 00:19:56 +0530 Pulkit Goyal py3: use .startswith() instead of bytes[0]
Fri, 20 Apr 2018 20:48:10 +0900 Yuya Nishihara diffhelper: rename module to avoid conflicts with ancient C module (issue5846) stable
Sat, 14 Apr 2018 20:11:27 -0400 Matt Harbison diff: invoke the file prefetch hook
Mon, 09 Apr 2018 15:58:30 -0700 Jun Wu patch: implement a new worddiff algorithm
Mon, 19 Mar 2018 04:28:30 -0700 Jun Wu patch: buffer lines for a same hunk
Mon, 19 Mar 2018 04:28:29 -0700 Jun Wu patch: move yielding "\n" to the end of loop
Thu, 12 Apr 2018 23:14:38 -0700 Gregory Szorc patch: make extract() a context manager (API)
Mon, 09 Apr 2018 21:08:52 +0900 Yuya Nishihara diffhelpers: make return value of testhunk() more Pythonic
Mon, 09 Apr 2018 21:06:46 +0900 Yuya Nishihara patch: error out if reached to EOF while reading hunk
Mon, 09 Apr 2018 20:54:00 +0900 Yuya Nishihara diffhelpers: move out of pure package
Mon, 09 Apr 2018 20:52:54 +0900 Yuya Nishihara diffhelpers: naming and whitespace cleanup
Mon, 09 Apr 2018 20:49:39 +0900 Yuya Nishihara patch: stop using cext.diffhelpers
Sun, 08 Apr 2018 15:39:08 +0900 Yuya Nishihara py3: use s.startswith() instead of s[n] while parsing patches
Sun, 08 Apr 2018 15:03:00 +0900 Yuya Nishihara py3: use system string to access email headers
Sat, 07 Apr 2018 21:23:42 +0900 Yuya Nishihara procutil: make explainexit() simply return a message (API)
Sat, 07 Apr 2018 20:50:38 +0900 Yuya Nishihara procutil: always popen() in binary mode
Sat, 07 Apr 2018 13:42:37 +0900 Yuya Nishihara py3: convert parsed message items to bytes in patch.extract()
Sat, 24 Mar 2018 15:10:51 +0900 Yuya Nishihara procutil: bulk-replace function calls to point to new module
Thu, 22 Mar 2018 21:56:20 +0900 Yuya Nishihara stringutil: bulk-replace call sites to point to new module
Sat, 10 Mar 2018 19:49:09 +0900 Yuya Nishihara py3: open patch file in binary mode and convert eol manually
Tue, 06 Mar 2018 07:45:57 -0600 Yuya Nishihara py3: wrap file object to write patch in native eol preserving byte-ness
Sat, 10 Mar 2018 15:57:16 +0900 Yuya Nishihara py3: use r'' instead of sysstr('') to get around code transformer
Sat, 03 Mar 2018 12:39:14 -0800 Jun Wu mdiff: add a config option to use xdiff algorithm
Sat, 03 Mar 2018 14:21:47 -0500 Yuya Nishihara py3: fix slicing of bytes in patch.iterhunks()
Thu, 15 Feb 2018 17:18:26 +0100 Boris Feld util: extract all date-related utils in utils/dateutil module
Mon, 26 Feb 2018 17:25:46 +0530 Pulkit Goyal py3: slice over bytes or use .startswith() to prevent getting ascii values
Sun, 25 Feb 2018 23:09:07 -0500 Augie Fackler py3: convert known-int values to bytes using %d
Wed, 14 Feb 2018 17:43:33 +0530 Pulkit Goyal py3: use util.forcebytestr instead of str for converting errors to bytes
Wed, 14 Feb 2018 17:44:54 +0530 Pulkit Goyal py3: slice over bytes to prevent getting ascii values
Sun, 11 Feb 2018 14:18:27 -0800 Gregory Szorc py3: open temporary file in binary mode
Sun, 11 Feb 2018 14:17:23 -0800 Gregory Szorc py3: use email parser that operates on bytes
Sun, 11 Feb 2018 10:49:00 -0800 Gregory Szorc py3: convert content-type to bytes
Sun, 04 Feb 2018 10:28:03 +0900 Yuya Nishihara patch: unify check_binary and binary flags
Sun, 21 Jan 2018 13:03:03 +0900 Yuya Nishihara cmdutil: drop aliases for logcmdutil functions (API)
Thu, 25 Jan 2018 22:40:19 +0100 Joerg Sonnenberger patch: avoid repeated binary checks if all files in a patch are text
less more (0) -300 -100 -60 tip