From 52923ad50dd5c16c9772334c098ffc1117453b92 Mon Sep 17 00:00:00 2001 From: tpaxman Date: Sat, 24 Jun 2023 21:04:27 -0600 Subject: [PATCH] add description to read_csv chunksize parameter --- pandas/io/parsers/readers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandas/io/parsers/readers.py b/pandas/io/parsers/readers.py index 153899e023137..63364331e89f9 100644 --- a/pandas/io/parsers/readers.py +++ b/pandas/io/parsers/readers.py @@ -293,7 +293,8 @@ ``TextFileReader`` is a context manager. chunksize : int, optional - Return ``TextFileReader`` object for iteration. + Number of lines to read from the file per chunk. Passing a value will cause the + function to return a ``TextFileReader`` object for iteration. See the `IO Tools docs `_ for more information on ``iterator`` and ``chunksize``.