This project is closed and read-only.
Actions
Backport #8097
closedMutex#synchronize block param oddity
Backport #8097:
Mutex#synchronize block param oddity
Status:
Closed
Assignee:
Description
In 1.9.3 Mutex#synchronize yield nothing.
In 2.0.0 Mutex#synchronize yields nil.
require 'thread'
Mutex.new.synchronize do |*args|
p RUBY_VERSION => args
end
Actions