You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
463 B

from typing_extensions import deprecated, override
from ._backend import Backend
class DistutilsBackend(Backend):
@deprecated(
"distutils has been deprecated since NumPy 1.26.x. Use the Meson backend instead, or generate wrappers without -c and "
"use a custom build script"
)
# NOTE: the `sef` typo matches runtime
def __init__(sef, *args: object, **kwargs: object) -> None: ...
@override
def compile(self) -> None: ...