From 3a71da583076f6a827005c87f2d85843d125c4d6 Mon Sep 17 00:00:00 2001 From: tadf Date: Thu, 12 Apr 2012 10:52:58 +0000 Subject: * ext/date/date_core.c: added some notes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35312 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/date/date_core.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'ext/date') diff --git a/ext/date/date_core.c b/ext/date/date_core.c index 2006bd453c..99f1c0de98 100644 --- a/ext/date/date_core.c +++ b/ext/date/date_core.c @@ -4205,8 +4205,9 @@ date_s__strptime_internal(int argc, VALUE *argv, VALUE klass, * Date._strptime(string[, format='%F']) -> hash * * Parses the given representation of date and time with the given - * template, and returns a hash of parsed elements. - * + * template, and returns a hash of parsed elements. _strptime does + * not support specification of flags and width unlike strftime. + * * For example: * * Date._strptime('2001-02-03', '%Y-%m-%d') @@ -4225,7 +4226,8 @@ date_s__strptime(int argc, VALUE *argv, VALUE klass) * Date.strptime([string='-4712-01-01'[, format='%F'[, start=ITALY]]]) -> date * * Parses the given representation of date and time with the given - * template, and creates a date object. + * template, and creates a date object. strptime does not support + * specification of flags and width unlike strftime. * * For example: * @@ -8013,7 +8015,8 @@ dt_new_by_frags(VALUE klass, VALUE hash, VALUE sg) * DateTime._strptime(string[, format='%FT%T%z']) -> hash * * Parses the given representation of date and time with the given - * template, and returns a hash of parsed elements. + * template, and returns a hash of parsed elements. _strptime does + * not support specification of flags and width unlike strftime. * * See also strptime(3) and strftime. */ @@ -8028,7 +8031,8 @@ datetime_s__strptime(int argc, VALUE *argv, VALUE klass) * DateTime.strptime([string='-4712-01-01T00:00:00+00:00'[, format='%FT%T%z'[ ,start=ITALY]]]) -> datetime * * Parses the given representation of date and time with the given - * template, and creates a date object. + * template, and creates a date object. strptime does not support + * specification of flags and width unlike strftime. * * For example: * -- cgit v1.2.3