зеркало из https://github.com/github/ruby.git
Fix Tempfile.open to correctly pass keywords to Tempfile.new
This commit is contained in:
Родитель
5603681520
Коммит
434582d888
|
@ -287,8 +287,8 @@ class Tempfile < DelegateClass(File)
|
|||
# ensure
|
||||
# f.close
|
||||
# end
|
||||
def open(*args)
|
||||
tempfile = new(*args)
|
||||
def open(*args, **kw)
|
||||
tempfile = new(*args, **kw)
|
||||
|
||||
if block_given?
|
||||
begin
|
||||
|
|
Загрузка…
Ссылка в новой задаче