From c212491bea787b27cbcf5397d495d9c2e5a35001 Mon Sep 17 00:00:00 2001 From: David Li Date: Wed, 11 May 2022 11:56:52 -0400 Subject: [PATCH] [Python] Fix test output examples that changed in 8.0.0 (#195) --- python/source/io.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/source/io.rst b/python/source/io.rst index 2a8e1286..bacda289 100755 --- a/python/source/io.rst +++ b/python/source/io.rst @@ -72,7 +72,7 @@ the parquet file as :class:`ChunkedArray` pyarrow.Table col1: int64 ---- - col1: [[0,1,2,3,4,5,6,7,8,9,...,90,91,92,93,94,95,96,97,98,99]] + col1: [[0,1,2,3,4,...,95,96,97,98,99]] Reading a subset of Parquet data ================================ @@ -228,7 +228,7 @@ provided to :func:`pyarrow.csv.read_csv` to drive pyarrow.Table col1: int64 ---- - col1: [[0,1,2,3,4,5,6,7,8,9,...,90,91,92,93,94,95,96,97,98,99]] + col1: [[0,1,2,3,4,...,95,96,97,98,99]] Writing Partitioned Datasets ============================ @@ -529,7 +529,7 @@ the parquet file as :class:`ChunkedArray` pyarrow.Table col1: int64 ---- - col1: [[0,1,2,3,4,5,6,7,8,9,...,90,91,92,93,94,95,96,97,98,99]] + col1: [[0,1,2,3,4,...,95,96,97,98,99]] Reading Line Delimited JSON ===========================