First Commit

This commit is contained in:
2026-05-31 10:17:09 +07:00
commit 17a9c69379
4547 changed files with 1170384 additions and 0 deletions
@@ -0,0 +1,13 @@
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: ...