зеркало из 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
|
# ensure
|
||||||
# f.close
|
# f.close
|
||||||
# end
|
# end
|
||||||
def open(*args)
|
def open(*args, **kw)
|
||||||
tempfile = new(*args)
|
tempfile = new(*args, **kw)
|
||||||
|
|
||||||
if block_given?
|
if block_given?
|
||||||
begin
|
begin
|
||||||
|
|
Загрузка…
Ссылка в новой задаче