Updated script that can be controled by Nodejs web app
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import sys
|
||||
from io import StringIO
|
||||
|
||||
import numpy as np
|
||||
import numpy.typing as npt
|
||||
import numpy.lib.array_utils as array_utils
|
||||
|
||||
if sys.version_info >= (3, 11):
|
||||
from typing import assert_type
|
||||
else:
|
||||
from typing_extensions import assert_type
|
||||
|
||||
AR: npt.NDArray[np.float64]
|
||||
AR_DICT: dict[str, npt.NDArray[np.float64]]
|
||||
FILE: StringIO
|
||||
|
||||
def func(a: int) -> bool: ...
|
||||
|
||||
assert_type(array_utils.byte_bounds(AR), tuple[int, int])
|
||||
assert_type(array_utils.byte_bounds(np.float64()), tuple[int, int])
|
||||
|
||||
assert_type(np.info(1, output=FILE), None)
|
||||
Reference in New Issue
Block a user