Updated script that can be controled by Nodejs web app
This commit is contained in:
19
lib/python3.13/site-packages/numpy/exceptions.pyi
Normal file
19
lib/python3.13/site-packages/numpy/exceptions.pyi
Normal file
@@ -0,0 +1,19 @@
|
||||
from typing import overload
|
||||
|
||||
__all__: list[str]
|
||||
|
||||
class ComplexWarning(RuntimeWarning): ...
|
||||
class ModuleDeprecationWarning(DeprecationWarning): ...
|
||||
class VisibleDeprecationWarning(UserWarning): ...
|
||||
class RankWarning(RuntimeWarning): ...
|
||||
class TooHardError(RuntimeError): ...
|
||||
class DTypePromotionError(TypeError): ...
|
||||
|
||||
class AxisError(ValueError, IndexError):
|
||||
axis: None | int
|
||||
ndim: None | int
|
||||
@overload
|
||||
def __init__(self, axis: str, ndim: None = ..., msg_prefix: None = ...) -> None: ...
|
||||
@overload
|
||||
def __init__(self, axis: int, ndim: int, msg_prefix: None | str = ...) -> None: ...
|
||||
def __str__(self) -> str: ...
|
Reference in New Issue
Block a user