summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/date/format.rb9
2 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 379ba7a562..5dbfe8a42e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Sep 9 09:14:45 2007 Tadayoshi Funaba <[email protected]>
+
+ * lib/date/format.rb (_strptime): now also attaches an element
+ which denotes leftover substring if exists.
+
Sat Sep 8 10:22:20 2007 Yukihiro Matsumoto <[email protected]>
* struct.c (rb_struct_s_members): should raise TypeError instead
diff --git a/lib/date/format.rb b/lib/date/format.rb
index 88f0b9adf1..c7efb0e3bc 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'
@@ -598,8 +598,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
@@ -617,6 +618,10 @@ class Date
end
end
+ unless str.empty?
+ e.leftover = str
+ end
+
e.to_hash
end