Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/numpy-stubs/f2py/auxfuncs.pyi
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from _typeshed import FileDescriptorOrPath
from collections.abc import Callable, Mapping
from pprint import pprint as show
from typing import Any, Final, Literal as L, Never, TypeAlias, overload
from typing_extensions import TypeVar
from typing import Any, Final, Literal as L, Never, TypeAlias, TypeVar, overload

from .cfuncs import errmess

Expand Down Expand Up @@ -200,12 +199,13 @@ def isintent_inplace(var: _Var) -> bool: ...
def isintent_aux(var: _Var) -> bool: ...

#
def containscommon(rout: _ROut) -> _Bool: ...
def containsderivedtypes(rout: _ROut) -> L[0, 1]: ...
def containscommon(rout: _ROut) -> _Bool: ...
def hasexternals(rout: _ROut) -> bool: ...
def hasresultnote(rout: _ROut) -> _Bool: ...
def hasbody(rout: _ROut) -> _Bool: ...
def hascommon(rout: _ROut) -> bool: ...
def hasderivedtypes(rout: _ROut) -> bool: ...
def hascallstatement(rout: _ROut) -> bool: ...
def isroutine(rout: _ROut) -> bool: ...
def ismodule(rout: _ROut) -> bool: ...
Expand Down