summaryrefslogtreecommitdiff
path: root/numpy/lib/utils.pyi
blob: 5a1594149d59a24eb694c41035004c08c18ee795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from typing import List

from numpy.core.numerictypes import (
    issubclass_ as issubclass_,
    issubdtype as issubdtype,
    issubsctype as issubsctype,
)

__all__: List[str]

def get_include(): ...
def deprecate(*args, **kwargs): ...
def deprecate_with_doc(msg): ...
def byte_bounds(a): ...
def who(vardict=...): ...
def info(object=..., maxwidth=..., output=..., toplevel=...): ...
def source(object, output=...): ...
def lookfor(what, module=..., import_modules=..., regenerate=..., output=...): ...
def safe_eval(source): ...