public
Description: Rubinius, the Ruby VM
Homepage: http://rubini.us
Clone URL: git://github.com/evanphx/rubinius.git
Fix an infinite loop in Numeric#==
wilson (author)
Fri May 16 18:57:41 -0700 2008
commit  a037a838c34ca6896ddc33dc3e4477d083727ba1
tree    be1524769d27597badffac4b09897c8c815fa9fd
parent  1dd6aa13300beed45af7921d35f8d17d79a23359
...
98
99
100
 
101
102
103
...
98
99
100
101
102
103
104
0
@@ -98,6 +98,7 @@ class Numeric
0
   end
0
 
0
   def ==(other)
0
+ return true if other.equal?(self)
0
     !!(other == self)
0
   end
0
   

Comments

    No one has commented yet.