| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Python312/Lib/site-packages/numpy/typing/tests/data/pass/ |
Upload File : |
"""Based on the `if __name__ == "__main__"` test code in `lib/_user_array_impl.py`.""" from __future__ import annotations import numpy as np from numpy.lib.user_array import container N = 10_000 W = H = int(N**0.5) a: np.ndarray[tuple[int, int], np.dtype[np.int32]] ua: container[tuple[int, int], np.dtype[np.int32]] a = np.arange(N, dtype=np.int32).reshape(W, H) ua = container(a) ua_small: container[tuple[int, int], np.dtype[np.int32]] = ua[:3, :5] ua_small[0, 0] = 10 ua_bool: container[tuple[int, int], np.dtype[np.bool]] = ua_small > 1 # shape: tuple[int, int] = np.shape(ua)