summaryrefslogtreecommitdiff
path: root/lib/pp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pp.rb')
-rw-r--r--lib/pp.rb4
1 files changed, 3 insertions, 1 deletions
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