From: George Ogata Date: 2006-12-12T12:49:37+09:00 Subject: Re: Bug in Ruby or Pickaxe? (was: Re: else inside rescue is useless?) On 12/12/06, Robert Klemme wrote: > Even in the current situation (where there seems to be no semantically > difference) putting code into the else clause instead of the end of the > block might have an advantage documentation wise. If I'm understanding you correctly, there is a difference between: begin f g rescue E end and begin f rescue E else g end and that is that any E's raised in #g won't be rescued in the latter.