From 51ca35b351c1d895b50536a018ba1f12b67cd399 Mon Sep 17 00:00:00 2001 From: Ruifeng Zheng Date: Mon, 27 Apr 2026 12:45:30 +0000 Subject: [PATCH] [MINOR][PS][DOCS] Replace ellipsis with ASCII in pandas-on-Spark DataFrame docstrings --- python/pyspark/pandas/frame.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/pyspark/pandas/frame.py b/python/pyspark/pandas/frame.py index 6cb6d8317de82..812f66b882956 100644 --- a/python/pyspark/pandas/frame.py +++ b/python/pyspark/pandas/frame.py @@ -7988,7 +7988,7 @@ def sort_index( first puts NaNs at the beginning, last puts NaNs at the end. Not implemented for MultiIndex. ignore_index : bool, default False - If True, the resulting axis will be labeled 0, 1, …, n - 1. + If True, the resulting axis will be labeled 0, 1, ..., n - 1. .. versionadded:: 3.4.0 @@ -9646,7 +9646,7 @@ def sample( random_state : int, optional Seed for the random number generator (if int). ignore_index : bool, default False - If True, the resulting index will be labeled 0, 1, …, n - 1. + If True, the resulting index will be labeled 0, 1, ..., n - 1. .. versionadded:: 3.4.0 @@ -10249,7 +10249,7 @@ def drop_duplicates( inplace : boolean, default False Whether to drop duplicates in place or to return a copy. ignore_index : boolean, default False - If True, the resulting axis will be labeled 0, 1, …, n - 1. + If True, the resulting axis will be labeled 0, 1, ..., n - 1. Returns ------- @@ -13351,7 +13351,7 @@ def explode(self, column: Name, ignore_index: bool = False) -> "DataFrame": column : str or tuple Column to explode. ignore_index : bool, default False - If True, the resulting index will be labeled 0, 1, …, n - 1. + If True, the resulting index will be labeled 0, 1, ..., n - 1. Returns -------