From: "Iñaki Baz Castillo" Date: 2009-03-02T08:58:46+09:00 Subject: Rub 1.9: "inline rescue" doesn't work? Hi, is there any explanation for the folowing big difference between the same code in 1.8 and 1.9?: 1.8) aaa = 123.capitalize rescue 444 => 444 1.9) aaa = 123.capitalize rescue 444 NoMethodError: undefined method `capitalize' for 123:Fixnum It seems that Ruby 1.9 doesn't react on "inline rescue" as 1.8. Do I miss something? Thanks a lot. -- Iñaki Baz Castillo