* lib/date.rb (inspect): reverted the previous change.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20209 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2008-11-11 11:42:46 +00:00
Родитель e644398bc6
Коммит b0e3af4922
4 изменённых файлов: 9 добавлений и 7 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Tue Nov 11 20:39:27 2008 Tadayoshi Funaba <tadf@dotrb.org>
* lib/date.rb (inspect): reverted the previous change.
Tue Nov 11 17:35:25 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/win32.c (rb_w32_accept): secure fd before accept because if

Просмотреть файл

@ -1470,9 +1470,7 @@ class Date
def hash() @ajd.hash end
# Return internal object state as a programmer-readable string.
def inspect
format('#<%s: %s (%s,%s,%s)>', self.class, to_s, @ajd, @of, @sg)
end
def inspect() format('#<%s: %s,%s,%s>', self.class, @ajd, @of, @sg) end
# Return the date as a human-readable string.
#

Просмотреть файл

@ -41,9 +41,9 @@ class TestDate < Test::Unit::TestCase
assert_instance_of(DateSub, DateSub.today)
assert_instance_of(DateTimeSub, DateTimeSub.now)
assert_equal('#<DateSub: -4712-01-01 (-1/2,0,2299161)>', d.inspect)
assert_equal('#<DateSub: -1/2,0,2299161>', d.inspect)
assert_equal('-4712-01-01', d.to_s)
assert_equal('#<DateTimeSub: -4712-01-01T00:00:00+00:00 (-1/2,0,2299161)>', dt.inspect)
assert_equal('#<DateTimeSub: -1/2,0,2299161>', dt.inspect)
assert_equal('-4712-01-01T00:00:00+00:00', dt.to_s)
d2 = d + 1

Просмотреть файл

@ -9,10 +9,10 @@ class TestDateAttr < Test::Unit::TestCase
[date, datetime].each_with_index do |d, i|
if i == 0
assert_match(/\#<Date\d?: 1965-05-23 \(4877807\/2,0,2299161\)>/,
assert_match(/\#<Date\d?: 4877807\/2,0,2299161>/,
d.inspect)
else
assert_match(/\#<DateTime\d?: 1965-05-23T22:31:59\+00:00 \(210721343519\/86400,0,2299161\)>/,
assert_match(/\#<DateTime\d?: 210721343519\/86400,0,2299161>/,
d.inspect)
end