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/__init__.py | |
parent | 3dcf3a9f6eeabdef0c73e0262fc329bec7a23aa5 (diff) | |
download | numpy-321e028b90526ec40df281ae543f18aa4434bcd3.tar.gz |
Shifted to CopyMode to np.array_api
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r-- | numpy/__init__.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index 476815520..83d2c279e 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -111,7 +111,7 @@ import warnings from ._globals import ( ModuleDeprecationWarning, VisibleDeprecationWarning, - _NoValue, CopyMode + _NoValue ) # We first need to detect if we're being called as part of the numpy setup @@ -133,8 +133,7 @@ else: raise ImportError(msg) from e __all__ = ['ModuleDeprecationWarning', - 'VisibleDeprecationWarning', - 'CopyMode'] + 'VisibleDeprecationWarning'] # get the version using versioneer from ._version import get_versions |