[#84280] [Ruby trunk Bug#14181] hangs or deadlocks from waitpid, threads, and trapping SIGCHLD — nobu@...
Issue #14181 has been updated by nobu (Nobuyoshi Nakada).
3 messages
2017/12/15
[#84398] [Ruby trunk Bug#14220] WEBrick changes - failures on MSWIN, MinGW — Greg.mpls@...
Issue #14220 has been reported by MSP-Greg (Greg L).
3 messages
2017/12/22
[#84472] Re: [ruby-dev:50394] [Ruby trunk Bug#14240] warn four special variables: $; $, $/ $\ — Eric Wong <normalperson@...>
Shouldn't English posts be on ruby-core instead of ruby-dev?
3 messages
2017/12/26
[ruby-core:84135] [Ruby trunk Bug#14162] Invoking binding.irb destructively shifts ARGV
From:
takashikkbn@...
Date:
2017-12-08 14:26:20 UTC
List:
ruby-core #84135
Issue #14162 has been reported by k0kubun (Takashi Kokubun).
----------------------------------------
Bug #14162: Invoking binding.irb destructively shifts ARGV
https://bugs.ruby-lang.org/issues/14162
* Author: k0kubun (Takashi Kokubun)
* Status: Open
* Priority: Normal
* Assignee:
* Target version: 2.5
* ruby -v: ruby 2.5.0dev (2017-12-05 trunk 61034) [x86_64-linux]
* Backport: 2.3: DONTNEED, 2.4: REQUIRED
----------------------------------------
~~~ ruby
$ ruby -v
ruby 2.5.0dev (2017-12-05 trunk 61034) [x86_64-linux]
$ cat script.rb
binding.irb
binding.irb
$ ruby script.rb a b c
From: script.rb @ line 1 :
=> 1: binding.irb
2: binding.irb
irb(main):001:0> p ARGV
["b", "c"]
=> ["b", "c"]
irb(main):002:0>
From: script.rb @ line 2 :
1: binding.irb
=> 2: binding.irb
irb(main):001:0> p ARGV
["c"]
=> ["c"]
~~~
Is this intentional? This is reproductive on both Ruby 2.4 and 2.5.
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:[email protected]?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>