[#68845] [Ruby trunk - Feature #11056] [PATCH] lib/net/*: use io/wait methods instead of IO.select — normalperson@...
Issue #11056 has been updated by Eric Wong.
3 messages
2015/04/11
[#68945] [Ruby trunk - Feature #11083] [Open] Gemify net-telnet — shibata.hiroshi@...
Issue #11083 has been reported by Hiroshi SHIBATA.
4 messages
2015/04/21
[#68951] Re: [Ruby trunk - Feature #11083] [Open] Gemify net-telnet
— Eric Wong <normalperson@...>
2015/04/21
shibata.hiroshi@gmail.com wrote:
[#69012] [Ruby trunk - Feature #11105] [Open] ES6-like hash literals — shugo@...
Issue #11105 has been reported by Shugo Maeda.
5 messages
2015/04/29
[ruby-core:69020] [Ruby trunk - Bug #10775] "break" from a block with nested begin-rescue became impossible
From:
nobu@...
Date:
2015-04-29 12:58:49 UTC
List:
ruby-core #69020
Issue #10775 has been updated by Nobuyoshi Nakada.
Backport changed from 2.0.0: DONTNEED, 2.1: DONTNEED, 2.2: DONTNEED to 2.0.0: DONTNEED, 2.1: DONTNEED, 2.2: REQUIRED
----------------------------------------
Bug #10775: "break" from a block with nested begin-rescue became impossible
https://bugs.ruby-lang.org/issues/10775#change-52275
* Author: MISUMI Rize
* Status: Closed
* Priority: Normal
* Assignee:
* ruby -v: ruby 2.3.0dev (2015-01-23 trunk 49389) [x86_64-darwin14]
* Backport: 2.0.0: DONTNEED, 2.1: DONTNEED, 2.2: REQUIRED
----------------------------------------
"break" from a block with nested begin-rescue became impossible.
Example(it is valid on Ruby 2.2.0, 2.1.5):
~~~ruby
2.times do
begin
raise
rescue
begin
raise
rescue
break
end
end
end
~~~
Output:
~~~
test.rb:8:in `rescue in rescue in block in <main>': break from proc-closure (LocalJumpError)
from test.rb:5:in `rescue in block in <main>'
from test.rb:2:in `block in <main>'
from test.rb:1:in `each'
from test.rb:1:in `<main>'
~~~
I wrote test and fix on GitHub. Please see the [pull request](https://github.com/ruby/ruby/pull/820).
--
https://bugs.ruby-lang.org/