Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/attrs/__init__.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# SPDX-License-Identifier: MIT
3from attr import (
4 NOTHING,
5 Attribute,
6 AttrsInstance,
7 Factory,
8 _make_getattr,
9 assoc,
10 cmp_using,
11 define,
12 evolve,
13 field,
14 fields,
15 fields_dict,
16 frozen,
17 has,
18 make_class,
19 mutable,
20 resolve_types,
21 validate,
22)
23from attr._next_gen import asdict, astuple
25from . import converters, exceptions, filters, setters, validators
28__all__ = [
29 "__author__",
30 "__copyright__",
31 "__description__",
32 "__doc__",
33 "__email__",
34 "__license__",
35 "__title__",
36 "__url__",
37 "__version__",
38 "__version_info__",
39 "asdict",
40 "assoc",
41 "astuple",
42 "Attribute",
43 "AttrsInstance",
44 "cmp_using",
45 "converters",
46 "define",
47 "evolve",
48 "exceptions",
49 "Factory",
50 "field",
51 "fields_dict",
52 "fields",
53 "filters",
54 "frozen",
55 "has",
56 "make_class",
57 "mutable",
58 "NOTHING",
59 "resolve_types",
60 "setters",
61 "validate",
62 "validators",
63]
65__getattr__ = _make_getattr(__name__)