Mercurial > public > mercurial-scm > hg-stable
annotate mercurial/thirdparty/attr/_config.py @ 34398:765eb17a7eb8
thirdparty: vendor attrs
The attrs package allows defining namedtuple-like classes with no weird
behavior and no runtime performance cost.
This patch vendors in attrs 17.2.0.
# no-check-commit
Differential Revision: https://phab.mercurial-scm.org/D867
author | Siddharth Agarwal <sid0@fb.com> |
---|---|
date | Sun, 01 Oct 2017 04:14:16 -0700 |
parents | |
children | e1c586b9a43c |
rev | line source |
---|---|
34398 | 1 from __future__ import absolute_import, division, print_function |
2 | |
3 | |
4 __all__ = ["set_run_validators", "get_run_validators"] | |
5 | |
6 _run_validators = True | |
7 | |
8 | |
9 def set_run_validators(run): | |
10 """ | |
11 Set whether or not validators are run. By default, they are run. | |
12 """ | |
13 if not isinstance(run, bool): | |
14 raise TypeError("'run' must be bool.") | |
15 global _run_validators | |
16 _run_validators = run | |
17 | |
18 | |
19 def get_run_validators(): | |
20 """ | |
21 Return whether or not validators are run. | |
22 """ | |
23 return _run_validators |