We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f963c8 commit 08395afCopy full SHA for 08395af
pandas/core/arrays/integer.py
@@ -58,6 +58,11 @@ def numpy_dtype(self):
58
def kind(self):
59
return self.numpy_dtype.kind
60
61
+ @cache_readonly
62
+ def itemsize(self):
63
+ """ Return the number of bytes in this dtype """
64
+ return self.numpy_dtype.itemsize
65
+
66
@classmethod
67
def construct_array_type(cls):
68
"""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