mercurial/match.py
Tue, 09 Apr 2024 11:00:52 +0100 Arseniy Alekseyev largefiles: track if a matcher was tampered with
Fri, 12 Apr 2024 15:39:21 +0100 Arseniy Alekseyev match: fix the "visitdir" method on "rootfilesin" matchers stable
Mon, 12 Jun 2023 16:51:08 +0200 Raphaël Gomès match: add `filepath:` pattern to match an exact filepath relative to the root
Sat, 01 Apr 2023 05:58:59 +0200 Pierre-Yves David match: match explicit file using a set stable
Sat, 01 Apr 2023 05:57:09 +0200 Pierre-Yves David match: sort patterns before compiling them into a regex stable
Tue, 07 Mar 2023 16:45:54 +0100 Mads Kiilerich py3: fix for Python 3.12 emitting SyntaxWarning on invalid escape sequences stable
Wed, 14 Dec 2022 22:24:54 -0500 Matt Harbison typing: drop an unnecessary warning disabling comment in match.py
Tue, 22 Nov 2022 11:55:26 -0500 Matt Harbison match: make the FLAG_RE pattern a raw string stable
Wed, 16 Nov 2022 15:39:10 +0100 Pierre-Yves David matcher: do not prepend '.*' to pattern using ^ after flags stable
Wed, 16 Nov 2022 13:05:01 +0100 Pierre-Yves David matcher: fix issues regex flag contained in pattern (issue6759) stable
Mon, 21 Feb 2022 13:08:28 -0700 Gregory Szorc py3: use class X: instead of class X(object):
Mon, 21 Feb 2022 12:42:48 -0700 Gregory Szorc py3: stop using util.iterfile()
Thu, 03 Mar 2022 18:28:30 -0800 Gregory Szorc global: bulk replace simple pycompat.iteritems(x) with x.items()
Mon, 21 Feb 2022 10:21:18 -0700 Gregory Szorc match: delete Python 2 conditional code
Thu, 03 Mar 2022 17:34:00 +0100 Gregory Szorc py2: remove simple from __future__ statements
Wed, 31 Mar 2021 12:46:54 -0700 Kyle Lippincott match: convert O(n) to O(log n) in exactmatcher.visitchildrenset
Thu, 25 Mar 2021 18:02:08 +0100 Raphaël Gomès contributor: change mentions of mpm to olivia
Thu, 03 Dec 2020 01:45:23 -0500 Matt Harbison formatting: re-blacken match.py
Mon, 30 Nov 2020 12:30:58 -0800 Kyle Lippincott match: skip walking up the directory hierarchy if the number of pats are small
Fri, 27 Nov 2020 19:35:37 -0500 Matt Harbison formatting: drop a few extra double quotes in docstrings
Fri, 27 Nov 2020 17:03:29 -0500 Augie Fackler formating: upgrade to black 20.8b1
Thu, 08 Oct 2020 13:37:31 -0700 Martin von Zweigbergk errors: name arguments to Abort constructor
Fri, 24 Jan 2020 11:06:01 +0100 Raphaël Gomès rust-status: use bare hg status fastpath from Python
Fri, 06 Mar 2020 13:27:41 -0500 Augie Fackler cleanup: run pyupgrade on our source tree to clean up varying things
Tue, 14 Jan 2020 16:58:07 +0100 Raphaël Gomès rust-filepatterns: remove bridge code for filepatterns-related functions
Fri, 06 Dec 2019 20:40:02 -0500 Matt Harbison match: resolve filesets against the passed `cwd`, not the current one
Fri, 27 Dec 2019 09:55:35 -0800 Martin von Zweigbergk tests: fix failing doctest in match.py by adding dummy auditor
Thu, 26 Dec 2019 18:26:06 -0500 Matt Harbison match: don't util.normpath() cwd
Thu, 26 Dec 2019 16:45:56 -0500 Matt Harbison tests: convert the `root` arg of matchmod.match() to local path separators
Fri, 13 Dec 2019 10:31:00 -0800 Martin von Zweigbergk match: normalize `cwd` early
Fri, 13 Dec 2019 11:21:31 -0800 Martin von Zweigbergk match: make sure `root` argument is always an absolute path (API)
Fri, 22 Nov 2019 21:42:04 +0900 Yuya Nishihara merge with stable
Wed, 20 Nov 2019 19:16:11 -0800 Daniel Ploch py3: make doc strings containing deprecated '\.' escape sequence raw strings stable
Fri, 15 Nov 2019 14:50:13 -0800 Martin von Zweigbergk match: remove explicitdir attribute
Thu, 14 Nov 2019 08:03:26 -0800 Martin von Zweigbergk utils: move finddirs() to pathutil
Tue, 29 Oct 2019 23:33:34 -0700 Martin von Zweigbergk match: drop support for passing '.' for root dir to visit*() methods
Wed, 06 Nov 2019 14:13:19 +0100 Pierre-Yves David utils: move the `dirs` definition in pathutil (API)
Fri, 08 Nov 2019 11:19:20 -0800 Augie Fackler cleanup: remove pointless r-prefixes on single-quoted strings
Wed, 06 Nov 2019 15:42:12 -0500 Augie Fackler match: suppress error about subscripting an exception
Tue, 08 Oct 2019 15:06:18 -0700 Martin von Zweigbergk cleanup: join string literals that are already on one line
Mon, 07 Oct 2019 00:04:04 -0400 Gregory Szorc py3: finish porting iteritems() to pycompat and remove source transformer
Sun, 06 Oct 2019 13:28:56 -0400 Gregory Szorc py3: manually import pycompat.open into files that need it
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
Sun, 25 Aug 2019 22:53:42 -0400 Valentin Gatien-Baron match: simplify the regexps created for glob patterns
Sat, 17 Aug 2019 10:25:04 +0900 Yuya Nishihara py3: do not convert rust module/attribute names to bytes
Thu, 30 May 2019 09:14:41 +0200 Georges Racinet rust: using policy.importrust from Python callers
Fri, 24 May 2019 12:33:46 +0200 Pierre-Yves David match: stabilize _rootsdirsandparents doctest
Wed, 22 May 2019 14:16:44 -0700 Martin von Zweigbergk match: remove an obsolete comment about util.finddirs()
Wed, 22 May 2019 13:58:05 -0700 Martin von Zweigbergk match: de-flake test-doctest.py by not depending on util.dirs() order
Wed, 24 Apr 2019 09:39:40 -0700 Martin von Zweigbergk match: drop unnecessary adding of '' to set of dirs
Tue, 16 May 2017 11:00:38 -0700 Martin von Zweigbergk util: make util.dirs() and util.finddirs() include root directory (API)
Mon, 15 May 2017 00:12:19 -0700 Martin von Zweigbergk match: use '' instead of '.' for root directory (API)
Fri, 17 May 2019 09:36:29 -0400 Raphaël Gomès rust-filepatterns: call new Rust implementations from Python
Tue, 23 Apr 2019 08:39:26 -0700 Martin von Zweigbergk match: remove unused match.__iter__ implementation (API)
Sun, 21 Apr 2019 09:29:55 -0700 Gregory Szorc match: use raw strings to avoid illegal baskslash escape
Thu, 11 Apr 2019 18:34:56 +0200 Pierre-Yves David match: fix re2 compability broken in 2e2699af5649
Wed, 10 Apr 2019 03:10:53 +0530 Pulkit Goyal py3: add b'' prefixes to new doctests in match.py
Sun, 07 Apr 2019 16:53:47 +0200 Denis Laxalde match: let regex match function return a boolean
Sun, 07 Apr 2019 17:16:58 +0200 Denis Laxalde match: make arguments of _expandsets() optional
Sun, 07 Apr 2019 17:14:29 +0200 Denis Laxalde match: make _donormalize's auditor and warn arguments optional
Mon, 08 Apr 2019 09:34:50 +0200 Denis Laxalde match: add doctest examples in match()
Sat, 06 Apr 2019 18:20:49 +0200 Denis Laxalde match: complete documentation of match() parameters
Sat, 06 Apr 2019 17:54:13 +0200 Denis Laxalde match: add doctest examples for patkind()
Sat, 06 Apr 2019 15:21:55 +0200 Denis Laxalde match: add a docstring with doctest examples to patternmatcher
Sun, 07 Apr 2019 12:21:23 +0200 Denis Laxalde match: add doctest examples for exactmatcher
Sat, 09 Feb 2019 22:50:53 -0800 Martin von Zweigbergk match: delete unused root and cwd arguments from {always,never,exact}() (API)
Sun, 10 Feb 2019 14:35:36 -0800 Martin von Zweigbergk match: delete unused root and cwd arguments to constructors (API)
Sun, 10 Feb 2019 14:16:33 -0800 Martin von Zweigbergk match: allow passing in badfn to always() and never()
Sat, 09 Feb 2019 23:48:19 -0800 Martin von Zweigbergk match: delete unused argument "listsubrepos" from _buildmatch()
Sat, 09 Feb 2019 16:46:11 -0800 Martin von Zweigbergk match: delete unused rel() (API)
Fri, 08 Feb 2019 13:27:26 -0800 Martin von Zweigbergk match: delete unused abs() (API)
Fri, 08 Feb 2019 12:00:44 -0800 Martin von Zweigbergk match: delete unused uipath() and _uipathrelative (API)
Fri, 08 Feb 2019 22:57:26 -0800 Martin von Zweigbergk match: remove unused "exact" argument (API)
Mon, 04 Feb 2019 18:14:03 +0300 Pulkit Goyal match: teach diffmatcher.visitdir() to return 'all' if possible
Thu, 03 Jan 2019 19:02:46 -0500 Valentin Gatien-Baron match: support rooted globs in hgignore
Mon, 07 Jan 2019 19:03:23 -0500 Augie Fackler merge with stable
Sat, 05 Jan 2019 15:44:55 +0900 Yuya Nishihara match: fix assertion for fileset with no context (issue6046) stable
Fri, 14 Dec 2018 11:37:50 -0500 Augie Fackler match: fix doctest to use bytes instead of str
Sun, 02 Dec 2018 13:09:46 -0800 Martin von Zweigbergk match: drop unnecessary wrapping of regex in group
Sun, 02 Dec 2018 13:45:20 -0800 Martin von Zweigbergk match: use _BASE_SIZE instead of magic value 4
Sun, 02 Dec 2018 13:44:49 -0800 Martin von Zweigbergk match: make "groupsize" include the trailing "|"
Sun, 02 Dec 2018 13:09:43 -0800 Martin von Zweigbergk match: fix an unaligned (but harmless) indent
Thu, 22 Nov 2018 17:41:10 +0100 Boris Feld match: raise an Abort error instead of OverflowError
Thu, 22 Nov 2018 21:02:02 +0100 Boris Feld match: avoid translating glob to matcher multiple times for large sets
Thu, 22 Nov 2018 17:25:49 +0100 Boris Feld match: extract function that group regexps
Thu, 22 Nov 2018 17:16:05 +0100 Boris Feld match: test for overflow error in pattern
Thu, 22 Nov 2018 17:20:32 +0100 Boris Feld match: extract a literal constant into a symbolic one
Wed, 28 Nov 2018 10:12:50 -0800 Martin von Zweigbergk match: remove obsolete catching of OverflowError
Mon, 19 Nov 2018 17:19:54 +0000 Boris Feld match: reformat `syntaxes` dictionary for better maintainability
Mon, 19 Nov 2018 18:54:44 +0000 Boris Feld match: provide and use a quick way to escape a single byte
Sun, 14 Oct 2018 11:16:22 -0400 Augie Fackler match: fix up a repr to not crash on Python 3
Sat, 13 Oct 2018 00:22:05 -0700 Martin von Zweigbergk match: optimize matcher when all patterns are of rootfilesin kind
Fri, 17 Aug 2018 19:18:53 -0700 Kyle Lippincott match: improve includematcher.visitchildrenset to be much faster and cached
Fri, 24 Aug 2018 10:19:31 -0700 Kyle Lippincott match: make exactmatcher.visitchildrenset return file children as well
Thu, 23 Aug 2018 18:04:15 -0700 Kyle Lippincott match: document that visitchildrenset might return files
Wed, 08 Aug 2018 17:03:05 -0700 Kyle Lippincott match: add missing "return set()", add FIXME to test to doc a bug
Wed, 08 Aug 2018 16:53:17 -0700 Kyle Lippincott match: correct doc for _rootsdirsandparents after 5a7df82de142
Mon, 06 Aug 2018 12:52:33 -0700 spectral match: add visitchildrenset complement to visitdir
Mon, 06 Aug 2018 12:52:22 -0700 spectral includematcher: separate "parents" from "dirs"
Sat, 28 Jul 2018 16:36:35 +0900 Yuya Nishihara doctest: convert matcher root to native path stable
Sat, 09 Jun 2018 20:53:12 +0900 Yuya Nishihara fileset: restrict getfileset() to not return a computed set (API)
Sat, 09 Jun 2018 22:04:07 +0900 Yuya Nishihara match: add prefixdirmatcher to adapt subrepo matcher back
Tue, 12 Jun 2018 22:01:59 +0900 Yuya Nishihara match: remove ctx argument from code path down to _buildmatch()
Sun, 10 Jun 2018 16:08:58 +0900 Yuya Nishihara match: compose 'set:' pattern as matcher
Sun, 10 Jun 2018 15:52:27 +0900 Yuya Nishihara match: resolve 'set:' patterns first in _buildmatch()
Sun, 10 Jun 2018 15:47:58 +0900 Yuya Nishihara match: explode if unsupported pattern passed down to _regex() builder
Sat, 09 Jun 2018 21:13:24 +0900 Yuya Nishihara match: add basic wrapper for boolean function
Tue, 26 Jun 2018 10:36:23 -0400 Augie Fackler cleanup: migrate from re.escape to stringutil.reescape
Wed, 16 May 2018 07:58:02 +0530 Pulkit Goyal py3: use pycompat.bytestr() on bytes before %r-ing it
Thu, 22 Mar 2018 21:56:20 +0900 Yuya Nishihara stringutil: bulk-replace call sites to point to new module
Fri, 02 Mar 2018 00:37:55 -0500 Augie Fackler match: some minimal pycompat fixes guided by test-hgignore.t
Sun, 11 Feb 2018 16:17:17 +0530 Pulkit Goyal py3: make sure we return str from __repr__
Tue, 16 Jan 2018 22:14:33 +0900 Yuya Nishihara match: do not weirdly include explicit files excluded by -X option
Thu, 30 Nov 2017 22:32:13 +0900 Yuya Nishihara match: remove doc about undefined behavior of visitdir()
Sat, 30 Sep 2017 07:44:45 -0400 Augie Fackler match: remove superfluous pass statements
Sun, 03 Sep 2017 14:56:31 +0900 Yuya Nishihara doctest: use print_function and convert bytes to unicode where needed
Sun, 03 Sep 2017 14:32:11 +0900 Yuya Nishihara doctest: bulk-replace string literals with b'' for Python 3
Wed, 02 Aug 2017 15:48:57 -0700 Kostia Balytskyi match: expose some data and functionality to other modules
Wed, 19 Jul 2017 14:50:50 -0700 Martin von Zweigbergk match: override visitdir() in nevermatcher to return False stable
less more (0) -120 tip