From 05172c42117ce60275d36e515c9ad7b9511b9c22 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 2 Feb 2004 23:09:38 +0000 Subject: [PATCH] * lib/pp.rb (Struct#pretty_print_cycle): follow 1.8 style. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5615 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ lib/pp.rb | 10 +++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 95711d2178..2b7612310b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Feb 3 08:04:57 2004 Tanaka Akira + + * lib/pp.rb (Struct#pretty_print_cycle): follow 1.8 style. + Mon Feb 2 22:06:31 2004 Nobuyoshi Nakada * parse.y (block_append, new_evstr, void_expr0): remove no longer used diff --git a/lib/pp.rb b/lib/pp.rb index a9491f62d2..8d8e640275 100644 --- a/lib/pp.rb +++ b/lib/pp.rb @@ -324,7 +324,7 @@ class Struct end def pretty_print_cycle(q) - q.text sprintf("#<%s:...>", self.class.name) + q.text sprintf("#", self.class.name) end end @@ -542,7 +542,7 @@ if __FILE__ == $0 result = PP.pp(a, '') assert_equal("#{a.inspect}\n", result) assert_match(/\A#\n\z/m, result) - a = 1 + a = 1.0 a.instance_eval { @a = nil } result = PP.pp(a, '') assert_equal("#{a.inspect}\n", result) @@ -562,19 +562,22 @@ if __FILE__ == $0 a = [] a << a assert_equal("[[...]]\n", PP.pp(a, '')) + assert_equal("#{a.inspect}\n", PP.pp(a, '')) end def test_hash a = {} a[0] = a assert_equal("{0=>{...}}\n", PP.pp(a, '')) + assert_equal("#{a.inspect}\n", PP.pp(a, '')) end S = Struct.new("S", :a, :b) def test_struct a = S.new(1,2) a.b = a - assert_equal("#>\n", PP.pp(a, '')) + assert_equal("#>\n", PP.pp(a, '')) + assert_equal("#{a.inspect}\n", PP.pp(a, '')) end def test_object @@ -592,6 +595,7 @@ if __FILE__ == $0 a = [] a << HasInspect.new(a) assert_equal("[]\n", PP.pp(a, '')) + assert_equal("#{a.inspect}\n", PP.pp(a, '')) end def test_share_nil