diff options
author | czgdp1807 <gdp.1807@gmail.com> | 2021-08-07 11:05:40 +0530 |
---|---|---|
committer | czgdp1807 <gdp.1807@gmail.com> | 2021-08-07 11:05:40 +0530 |
commit | 321e028b90526ec40df281ae543f18aa4434bcd3 (patch) | |
tree | 76267d734de77cc1a045ec6aac6a66d8bbf342f3 /numpy/core/multiarray.pyi | |
parent | 3dcf3a9f6eeabdef0c73e0262fc329bec7a23aa5 (diff) | |
download | numpy-321e028b90526ec40df281ae543f18aa4434bcd3.tar.gz |
Shifted to CopyMode to np.array_api
Diffstat (limited to 'numpy/core/multiarray.pyi')
-rw-r--r-- | numpy/core/multiarray.pyi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/numpy/core/multiarray.pyi b/numpy/core/multiarray.pyi index b02f7f391..8c4526a5d 100644 --- a/numpy/core/multiarray.pyi +++ b/numpy/core/multiarray.pyi @@ -20,7 +20,6 @@ from typing import ( from numpy import ( # Re-exports - CopyMode, busdaycalendar as busdaycalendar, broadcast as broadcast, dtype as dtype, @@ -79,6 +78,10 @@ from numpy.typing import ( _TD64Like_co, ) +from numpy.array_api import ( + CopyMode +) + if sys.version_info >= (3, 8): from typing import SupportsIndex, final, Final, Literal as L else: |