File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
224
224
-i " pandas.api.extensions.ExtensionArray.insert PR07,RT03,SA01" \
225
225
-i " pandas.api.extensions.ExtensionArray.interpolate PR01,SA01" \
226
226
-i " pandas.api.extensions.ExtensionArray.isin PR07,RT03,SA01" \
227
- -i " pandas.api.extensions.ExtensionArray.nbytes SA01" \
228
227
-i " pandas.api.extensions.ExtensionArray.ndim SA01" \
229
228
-i " pandas.api.extensions.ExtensionArray.ravel RT03,SA01" \
230
229
-i " pandas.api.extensions.ExtensionArray.take RT03" \
Original file line number Diff line number Diff line change @@ -662,6 +662,11 @@ def nbytes(self) -> int:
662
662
"""
663
663
The number of bytes needed to store this object in memory.
664
664
665
+ See Also
666
+ --------
667
+ ExtensionArray.size: The number of elements in the array.
668
+ ExtensionArray.shape: Return a tuple of the array dimensions.
669
+
665
670
Examples
666
671
--------
667
672
>>> pd.array([1, 2, 3]).nbytes
You can’t perform that action at this time.
0 commit comments