Mercurial > hg
comparison tests/test-mq-subrepo.t @ 42087:2e2699af5649
match: let regex match function return a boolean
Match function for regex pattern kind is built through
_buildregexmatch() and _buildmatch() using _rematcher() that returns a
re.match function, which either returns a match object or None. This
does not conform to Mercurial's matcher interface for __call__() or
exact(), which are expected to return a boolean value. We fix this by
building a lambda around _rematcher() in _buildregexmatch().
Accordingly, we update doctest examples to remove bool() calls that are
now useless.
author | Denis Laxalde <denis@laxalde.org> |
---|---|
date | Sun, 07 Apr 2019 16:53:47 +0200 |
parents | 4ea21df312ec |
children | f802a75da585 |
comparison
equal
deleted
inserted
replaced
42086:1721b92f2b5e | 42087:2e2699af5649 |
---|