From ab81b4fbc86104299d02cf3b59848c9fadcdc687 Mon Sep 17 00:00:00 2001 From: Chris Withers Date: Sun, 7 Apr 2013 10:31:40 -0300 Subject: [PATCH] fix docstring for date_parser option --- pandas/io/parsers.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pandas/io/parsers.py b/pandas/io/parsers.py index 164422f7572bd..9b1be2a658a6a 100644 --- a/pandas/io/parsers.py +++ b/pandas/io/parsers.py @@ -87,8 +87,9 @@ class DateConversionError(Exception): If True and parse_dates specifies combining multiple columns then keep the original columns. date_parser : function - Function to use for converting dates to strings. Defaults to - dateutil.parser + Function to use for converting a sequence of string columns to an + array of datetime instances. The default uses dateutil.parser.parser + to do the conversion. dayfirst : boolean, default False DD/MM format dates, international and European format thousands : str, default None