├── .github └── workflows │ └── pyhtontests.yaml ├── .gitignore ├── LICENSE ├── README.md ├── dataclassabc ├── __init__.py └── py.typed ├── examples ├── __init__.py ├── genericclass.py ├── mutablevariable.py └── spherepositions.py ├── pyproject.toml └── tests ├── __init__.py ├── test_dataclassabc.py ├── test_notlosingattributes.py └── test_resolveabcprop.py /.github/workflows/pyhtontests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelSchneeberger/dataclass-abc/HEAD/.github/workflows/pyhtontests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelSchneeberger/dataclass-abc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelSchneeberger/dataclass-abc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelSchneeberger/dataclass-abc/HEAD/README.md -------------------------------------------------------------------------------- /dataclassabc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelSchneeberger/dataclass-abc/HEAD/dataclassabc/__init__.py -------------------------------------------------------------------------------- /dataclassabc/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/genericclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelSchneeberger/dataclass-abc/HEAD/examples/genericclass.py -------------------------------------------------------------------------------- /examples/mutablevariable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelSchneeberger/dataclass-abc/HEAD/examples/mutablevariable.py -------------------------------------------------------------------------------- /examples/spherepositions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelSchneeberger/dataclass-abc/HEAD/examples/spherepositions.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelSchneeberger/dataclass-abc/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_dataclassabc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelSchneeberger/dataclass-abc/HEAD/tests/test_dataclassabc.py -------------------------------------------------------------------------------- /tests/test_notlosingattributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelSchneeberger/dataclass-abc/HEAD/tests/test_notlosingattributes.py -------------------------------------------------------------------------------- /tests/test_resolveabcprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelSchneeberger/dataclass-abc/HEAD/tests/test_resolveabcprop.py --------------------------------------------------------------------------------