MCPcopy
hub / github.com/dask/dask / __getattr__

Function __getattr__

dask/array/utils.py:589–600  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

587
588
589def __getattr__(name):
590 # Can't use the @_deprecated decorator as it would not work on `except AxisError`
591 if name == "AxisError":
592 warnings.warn(
593 "AxisError was deprecated after version 2021.10.0 and will be removed in a "
594 f"future release. Please use {typename(AxisError)} instead.",
595 category=FutureWarning,
596 stacklevel=2,
597 )
598 return AxisError
599 else:
600 raise AttributeError(f"module {__name__} has no attribute {name}")

Callers

nothing calls this directly

Calls 1

typenameFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…