Coverage for /usr/lib/python3/dist-packages/kiwisolver/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-14 15:55 +0200
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-14 15:55 +0200
1# --------------------------------------------------------------------------------------
2# Copyright (c) 2013-2022, Nucleic Development Team.
3#
4# Distributed under the terms of the Modified BSD License.
5#
6# The full license is in the file LICENSE, distributed with this software.
7# --------------------------------------------------------------------------------------
8from ._cext import (
9 BadRequiredStrength,
10 Constraint,
11 DuplicateConstraint,
12 DuplicateEditVariable,
13 Expression,
14 Solver,
15 Term,
16 UnknownConstraint,
17 UnknownEditVariable,
18 UnsatisfiableConstraint,
19 Variable,
20 __kiwi_version__,
21 __version__,
22 strength,
23)
25__all__ = [
26 "BadRequiredStrength",
27 "DuplicateConstraint",
28 "DuplicateEditVariable",
29 "UnknownConstraint",
30 "UnknownEditVariable",
31 "UnsatisfiableConstraint",
32 "strength",
33 "Variable",
34 "Term",
35 "Expression",
36 "Constraint",
37 "Solver",
38 "__version__",
39 "__kiwi_version__",
40]