File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change 1- import numpy as np
2- from numpy .lib .mixins import NDArrayOperatorsMixin
31from pandas .core .arraylike import OpsMixin
42from pandas .core .arrays ._mixins import NDArrayBackedExtensionArray
5- from pandas .core .arrays .base import (
6- ExtensionArray ,
7- ExtensionOpsMixin ,
8- )
93from pandas .core .strings .object_array import ObjectStringArrayMixin
104
11- from pandas .core .dtypes .dtypes import ExtensionDtype
12-
13- class PandasDtype (ExtensionDtype ):
14- @property
15- def numpy_dtype (self ) -> np .dtype : ...
16- @property
17- def itemsize (self ) -> int : ...
18-
19- class PandasArray (ExtensionArray , ExtensionOpsMixin , NDArrayOperatorsMixin ): ...
205class NumpyExtensionArray (
216 OpsMixin , NDArrayBackedExtensionArray , ObjectStringArrayMixin
227): ...
You can’t perform that action at this time.
0 commit comments