File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -405,7 +405,7 @@ def element_type(self) -> Dtype:
405
405
ListDtype(ListDtype(float32))
406
406
>>> deep_nested_type.element_type.element_type
407
407
ListDtype(float32)
408
- >>> deep_nested_type.element_type.element_type.element_type
408
+ >>> deep_nested_type.element_type.element_type.element_type # doctest: +SKIP
409
409
'float32'
410
410
"""
411
411
if isinstance (self ._typ .value_type , pa .ListType ):
@@ -426,7 +426,7 @@ def leaf_type(self):
426
426
>>> deep_nested_type = cudf.ListDtype(cudf.ListDtype(cudf.ListDtype("float32")))
427
427
>>> deep_nested_type
428
428
ListDtype(ListDtype(ListDtype(float32)))
429
- >>> deep_nested_type.leaf_type
429
+ >>> deep_nested_type.leaf_type # doctest: +SKIP
430
430
'float32'
431
431
"""
432
432
if isinstance (self .element_type , ListDtype ):
Original file line number Diff line number Diff line change @@ -586,7 +586,7 @@ def indices(self) -> dict[ScalarLike, cupy.ndarray]:
586
586
0 10 20 30
587
587
1 10 30 40
588
588
2 40 50 30
589
- >>> df.groupby(by=["a"]).indices
589
+ >>> df.groupby(by=["a"]).indices # DOCTEST: +SKIP
590
590
{10: array([0, 1]), 40: array([2])}
591
591
"""
592
592
offsets , group_keys , (indices ,) = self ._groups (
You can’t perform that action at this time.
0 commit comments