Skip to content

Commit 3995d44

Browse files
committed
ENH: add integer-na support via an ExtensionArray
closes pandas-dev#20700
1 parent 2695eda commit 3995d44

File tree

4 files changed

+939
-0
lines changed

4 files changed

+939
-0
lines changed

pandas/core/arrays/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
from .base import ExtensionArray # noqa
22
from .categorical import Categorical # noqa
3+
from .integer import ( # noqa
4+
Int8Array, Int16Array, Int32Array, Int64Array,
5+
UInt8Array, UInt16Array, UInt32Array, UInt64Array,
6+
to_integer_array)

0 commit comments

Comments
 (0)