Intelegentny_Pszczelarz/.venv/Lib/site-packages/numpy/typing/tests/data/reveal/warnings_and_errors.pyi

10 lines
420 B
Python
Raw Normal View History

2023-06-19 00:49:18 +02:00
import numpy as np
reveal_type(np.ModuleDeprecationWarning()) # E: ModuleDeprecationWarning
reveal_type(np.VisibleDeprecationWarning()) # E: VisibleDeprecationWarning
reveal_type(np.ComplexWarning()) # E: ComplexWarning
reveal_type(np.RankWarning()) # E: RankWarning
reveal_type(np.TooHardError()) # E: TooHardError
reveal_type(np.AxisError("test")) # E: AxisError
reveal_type(np.AxisError(5, 1)) # E: AxisError