From: calfeld@... Date: 2008-05-24T01:40:00+09:00 Subject: Module.===(X,X) is false I noticed that: class Foo end Foo === Foo returns false. In particular, I can not do: i = Foo case i when Foo then ... end I understand why Module.=== is true when it is, but is there a good reason for it to be false in this case? Are their any plans for this to change? Thanks, Chris Alfeld