changeset 35448 | 8251c4c4abdc |
parent 35424 | 702e6d2642e7 |
child 35454 | 786289423e97 |
--- a/mercurial/debugcommands.py Sat Dec 16 12:34:40 2017 -0500 +++ b/mercurial/debugcommands.py Mon Nov 27 18:48:36 2017 -0500 @@ -1173,6 +1173,11 @@ fm.formatlist([e.name() for e in wirecompengines if e.wireprotosupport()], name='compengine', fmt='%s', sep=', ')) + re2 = 'missing' + if util._re2: + re2 = 'available' + fm.plain(_('checking "re2" regexp engine (%s)\n') % re2) + fm.data(re2=bool(util._re2)) # templates p = templater.templatepaths()