| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Python312/Lib/site-packages/numpy/f2py/ |
Upload File : |
from _typeshed import StrOrBytesPath
import subprocess
from collections.abc import Iterable
from typing import Literal as L, overload, TypedDict, type_check_only
__all__ = ["run_main", "get_include"]
@type_check_only
class _F2PyDictBase(TypedDict):
csrc: list[str]
h: list[str]
@type_check_only
class _F2PyDict(_F2PyDictBase, total=False):
fsrc: list[str]
ltx: list[str]
def run_main(comline_list: Iterable[str]) -> dict[str, _F2PyDict]: ...
@overload
def compile(
source: str | bytes,
modulename: str = ...,
extra_args: str | list[str] = ...,
verbose: bool = ...,
source_fn: StrOrBytesPath | None = ...,
extension: L[".f", ".f90"] = ...,
full_output: L[False] = ...,
) -> int: ...
@overload
def compile(
source: str | bytes,
modulename: str = ...,
extra_args: str | list[str] = ...,
verbose: bool = ...,
source_fn: StrOrBytesPath | None = ...,
extension: L[".f", ".f90"] = ...,
*,
full_output: L[True],
) -> subprocess.CompletedProcess[bytes]: ...
def get_include() -> str: ...