diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-14 04:27:39 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-14 04:27:39 +0000 |
| commit | ab9eccd1ac338a5a22875322fd50e23f1f85c00f (patch) | |
| tree | 73b23558922babbfa5dc630fbb3935bfcd8a0cc9 /lib | |
| parent | bd3977e8fcb0dea08742f8debd7a0b2bace1e829 (diff) | |
| download | ruby-ab9eccd1ac338a5a22875322fd50e23f1f85c00f.tar.gz ruby-ab9eccd1ac338a5a22875322fd50e23f1f85c00f.tar.xz ruby-ab9eccd1ac338a5a22875322fd50e23f1f85c00f.zip | |
* lib/pp.rb (PP#object_address_group): remove odd number of 'f'
prefixed to negative address.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7263 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/pp.rb | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |
