From 4e79c6e19d851bf6414a3ddefa377c4ef2ec9399 Mon Sep 17 00:00:00 2001 From: tadf Date: Sun, 9 Sep 2007 00:14:22 +0000 Subject: * lib/date/format.rb (_strptime): now also attaches an element which denotes leftover substring if exists. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13419 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/date/format.rb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/date/format.rb b/lib/date/format.rb index 3274b9cc8..47cb9cae1 100644 --- a/lib/date/format.rb +++ b/lib/date/format.rb @@ -1,5 +1,5 @@ # format.rb: Written by Tadayoshi Funaba 1999-2007 -# $Id: format.rb,v 2.39 2007-09-08 08:30:25+09 tadf Exp $ +# $Id: format.rb,v 2.40 2007-09-09 08:28:03+09 tadf Exp $ require 'rational' @@ -570,8 +570,9 @@ class Date private_class_method :_strptime_i def self._strptime(str, fmt='%F') + str = str.dup e = Format::Bag.new - return unless _strptime_i(str.dup, fmt, e) + return unless _strptime_i(str, fmt, e) if e._cent if e.cwyear @@ -589,6 +590,10 @@ class Date end end + unless str.empty? + e.leftover = str + end + e.to_hash end -- cgit