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 Converter,
8 Factory,
9 _make_getattr,
10 assoc,
11 cmp_using,
12 define,
13 evolve,
14 field,
15 fields,
16 fields_dict,
17 frozen,
18 has,
19 make_class,
20 mutable,
21 resolve_types,
22 validate,
23)
24from attr._next_gen import asdict, astuple
26from . import converters, exceptions, filters, setters, validators
29__all__ = [
30 "__author__",
31 "__copyright__",
32 "__description__",
33 "__doc__",
34 "__email__",
35 "__license__",
36 "__title__",
37 "__url__",
38 "__version__",
39 "__version_info__",
40 "asdict",
41 "assoc",
42 "astuple",
43 "Attribute",
44 "AttrsInstance",
45 "cmp_using",
46 "Converter",
47 "converters",
48 "define",
49 "evolve",
50 "exceptions",
51 "Factory",
52 "field",
53 "fields_dict",
54 "fields",
55 "filters",
56 "frozen",
57 "has",
58 "make_class",
59 "mutable",
60 "NOTHING",
61 "resolve_types",
62 "setters",
63 "validate",
64 "validators",
65]
67__getattr__ = _make_getattr(__name__)