Skip to content

Commit 61fd32b

Browse files
committed
Remove * 50 from large_binary docstring example
1 parent c8643c5 commit 61fd32b

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

python/pyarrow/types.pxi

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3257,15 +3257,13 @@ def large_binary():
32573257
32583258
and use the type to create an array:
32593259
3260-
>>> pa.array(['foo', 'bar'] * 50, type=pa.large_binary())
3260+
>>> pa.array(['foo', 'bar', 'baz'], type=pa.large_binary())
32613261
<pyarrow.lib.LargeBinaryArray object at ...>
32623262
[
32633263
666F6F,
32643264
626172,
3265-
666F6F,
3266-
626172,
3267-
666F6F,
3268-
...
3265+
62617A
3266+
]
32693267
"""
32703268
return primitive_type(_Type_LARGE_BINARY)
32713269

0 commit comments

Comments
 (0)