Project

General

Profile

Actions

Bug #7665

closed

keyrest argument overwrites the last element of rest argument

Added by nobu (Nobuyoshi Nakada) about 11 years ago. Updated about 11 years ago.

Status:
Closed
Target version:
ruby -v:
r38718
Backport:
[ruby-core:51278]

Description

=begin
Since r38657, this code
def foo(*args, **opt)
p args, opt
end

foo("foo", "bar", zzz: 42)

shows
["foo", {:zzz=>42}]
{:zzz=>42}

but the first line should be (({["foo", "bar"]})).
=end


Related issues 1 (0 open1 closed)

Related to Ruby master - Bug #7630: Proc/block doesn't take keyword argumentsClosedktsj (Kazuki Tsujimoto)12/28/2012Actions
Actions #1

Updated by nobu (Nobuyoshi Nakada) about 11 years ago

  • Status changed from Assigned to Closed
  • % Done changed from 0 to 100

This issue was solved with changeset r38719.
Nobuyoshi, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.


vm_insnhelper.c: keyrest should not overwrite rest arg

  • vm_insnhelper.c (vm_callee_setup_arg_complex, vm_yield_setup_block_args):
    set keyrest hash after making rest array, so that the last element
    will not be overwritten. [ruby-core:51278] [Bug #7665]
Actions

Also available in: Atom PDF

Like0
Like0