From: "trans. (T. Onoma)" Date: 2004-12-01T23:48:48+09:00 Subject: object_hexid incorrect Can anyone help me understand why these are not the same, and how to fix? class Object def object_hexid return "0x#{'%x'%(self.__id__)}" end end o.inspect => "#" o.object_hexid => "0x2019abb2" Thanks, T.