From aee1d3d56ccc29cfbf03d9aed9b32fe810cc0b76 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 14 Nov 2004 04:27:39 +0000 Subject: * lib/pp.rb (PP#object_address_group): remove odd number of 'f' prefixed to negative address. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7263 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/pp.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/pp.rb') diff --git a/lib/pp.rb b/lib/pp.rb index 6ddd4dd2eb..756dce6f51 100644 --- a/lib/pp.rb +++ b/lib/pp.rb @@ -219,7 +219,9 @@ class PP < PrettyPrint end def object_address_group(obj, &block) - group(1, "\#<#{obj.class}:#{("0x%x" % (obj.__id__ * 2)).sub(/\.\.f/, '')}", '>', &block) + id = "%x" % (obj.__id__ * 2) + id.sub!(/\Af(?=[[:xdigit:]]{2}+\z)/, '') if id.sub!(/\A\.\./, '') + group(1, "\#<#{obj.class}:0x#{id}", '>', &block) end def comma_breakable -- cgit v1.2.3