blob: a9f3f07e0ed54d9b65d78b28f7cccb6ddb6a5d23 (
plain)
1
2
3
4
5
6
7
8
9
10
|
Numeric-style type names have been removed from type dictionaries
-----------------------------------------------------------------
To stay in sync with the deprecation for ``np.dtype("Complex64")``
and other numeric-style (capital case) types. These were removed
from ``np.sctypeDict`` and ``np.typeDict``. You should use
the lower case versions instead. Note that ``"Complex64"``
corresponds to ``"complex128"`` and ``"Complex32"`` corresponds
to ``"complex64"``. The numpy style (new) versions, denote the full
size and not the size of the real/imaginary part.
|