mercurial/revlogutils/__init__.py
author Gregory Szorc <gregory.szorc@gmail.com>
Mon, 04 Feb 2019 09:13:05 -0800
changeset 41538 b5642239fb32
parent 39329 729082bb9938
child 43524 a7c0c5b5a50f
permissions -rw-r--r--
configitems: use raw strings for hidden-{command,topic} items These strings are regular expressions. The "\." needs to be string escaped. We use raw strings to avoid doing that and the SyntaxWarning we'd receive otherwise on Python 3.8. Differential Revision: https://phab.mercurial-scm.org/D5822