diff mercurial/debugcommands.py @ 35452:8251c4c4abdc

debuginstall: add a line about re2 availability Using re2 engine can massively speed up regexp. We make it simpler to check if it is available in a given install.
author Boris Feld <boris.feld@octobus.net>
date Mon, 27 Nov 2017 18:48:36 -0500
parents 702e6d2642e7
children 786289423e97
line wrap: on
line diff
--- 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()