1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/date/format.rb (_parse): now interprets slashed numerical

dates as a big endian (except dd/mm/yyyy). [experimental]



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12859 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2007-07-31 14:46:58 +00:00
parent 8721f3983d
commit a16bdfdfba
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Jul 31 23:38:09 2007 Tadayoshi Funaba <tadf@dotrb.org>
* lib/date/format.rb (_parse): now interprets slashed numerical
dates as a big endian (except dd/mm/yyyy). [experimental]
Mon Jul 30 11:16:40 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* bignum.c (rb_big_aref): check for Bignum index range.

View file

@ -1167,7 +1167,7 @@ class Date
_parse_iso(str, e) ||
_parse_jis(str, e) ||
_parse_vms(str, e) ||
_parse_sla_us(str, e) ||
_parse_sla_jp(str, e) ||
_parse_dot_jp(str, e) ||
_parse_iso2(str, e) ||
_parse_year(str, e) ||