Skip to content

Commit 5add08e

Browse files
committed
feat[array]: validity in display array
Signed-off-by: Joe Isaacs <[email protected]>
1 parent 4db62c0 commit 5add08e

File tree

1 file changed

+2
-2
lines changed
  • vortex-python/src/arrays

1 file changed

+2
-2
lines changed

vortex-python/src/arrays/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -650,11 +650,11 @@ impl PyArray {
650650
/// ```python
651651
/// >>> import vortex as vx
652652
/// >>> arr = vx.array([1, 2, None, 3])
653-
/// >>> print(arr.display_tree())
653+
/// >>> print(arr.display_tree()) # doctest: +ELLIPSIS
654654
/// root: vortex.primitive(i64?, len=4) nbytes=33 B (100.00%)
655655
/// metadata: EmptyMetadata
656656
/// buffer (align=8): 32 B (96.97%)
657-
/// validity: vortex.bool(bool, len=4) nbytes=1 B (3.03%)
657+
/// validity: vortex.bool(bool, len=4) nbytes=1 B (3.03%)...
658658
/// metadata: BoolMetadata { offset: 0 }
659659
/// buffer (align=1): 1 B (100.00%)
660660
/// <BLANKLINE>

0 commit comments

Comments
 (0)