From 548fdb997da9653c2c57e082541f63958bdf3196 Mon Sep 17 00:00:00 2001 From: maymunashah Date: Tue, 20 Aug 2024 21:07:16 +0200 Subject: [PATCH] DOC: Clarify date_format usage in read_csv documentation specifically pandas/io/parsers/readers.py issue #59557 --- pandas/io/parsers/readers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/io/parsers/readers.py b/pandas/io/parsers/readers.py index 6e933f94cf0ba..2916e4d98cce4 100644 --- a/pandas/io/parsers/readers.py +++ b/pandas/io/parsers/readers.py @@ -321,7 +321,7 @@ class _read_shared(TypedDict, Generic[HashableT], total=False): Note: A fast-path exists for iso8601-formatted dates. date_format : str or dict of column -> format, optional - Format to use for parsing dates when used in conjunction with ``parse_dates``. + Format to use for parsing dates and/or times when used in conjunction with ``parse_dates``. The strftime to parse time, e.g. :const:`"%d/%m/%Y"`. See `strftime documentation