We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d967aef commit 083ebd2Copy full SHA for 083ebd2
pandas/core/arrays/integer.py
@@ -58,6 +58,10 @@ def numpy_dtype(self):
58
def kind(self):
59
return self.numpy_dtype.kind
60
61
+ @cache_readonly
62
+ def itemsize(self):
63
+ return self.numpy_dtype.itemsize
64
+
65
@classmethod
66
def construct_array_type(cls):
67
"""Return the array type associated with this dtype
pandas/tests/extension/test_integer.py
@@ -174,6 +174,10 @@ class TestGetitem(base.BaseGetitemTests):
174
pass
175
176
177
+class TestSetitem(base.BaseSetitemTests):
178
+ pass
179
180
181
class TestMissing(base.BaseMissingTests):
182
183
0 commit comments