#!/usr/bin/env python # Portions Copyright (c) Facebook, Inc. and its affiliates. # # This software may be used and distributed according to the terms of the # GNU General Public License version 2. # Copyright 2015 Matt Mackall # # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. # check-config - a config flag documentation checker for Mercurial from __future__ import absolute_import, print_function import re import sys foundopts = {} documented = {} allowinconsistent = set() configre = re.compile( r""" # Function call ui\.config(?P|int|bool|list)\( # First argument. ['"](?P
\S+)['"],\s* # Second argument ['"](?P