[#41918] [Feature #3647] Array#sample(n, replace=false) — Kenta Murata <redmine@...>

Feature #3647: Array#sample(n, replace=false)

11 messages 2010/08/03

[#41966] [Bug #3673] PTY.getpty with IO.pipe doesn't finish on FreeBSD — Yui NARUSE <redmine@...>

Bug #3673: PTY.getpty with IO.pipe doesn't finish on FreeBSD

9 messages 2010/08/10

[#41969] [Feature #3675] String#prepend, String#>> — Sora Harakami <redmine@...>

Feature #3675: String#prepend, String#>>

15 messages 2010/08/10
[#41976] Re: [Feature #3675] String#prepend, String#>> — Yukihiro Matsumoto <matz@...> 2010/08/10

まつもと ゆきひろです

[#41974] Re: [ruby-cvs:36157] Ruby:r28955 (trunk): * complex.c (nucomp_to_[ifr]): don't allow complex with in-exact — Yukihiro Matsumoto <matz@...>

まつもと ゆきひろです

7 messages 2010/08/10

[#42003] WEBrickに関するセキュリティ修正 (CVE-2010-0541) — Hideki Yamane <henrich@...>

12 messages 2010/08/11

[#42090] Math::atan2(0, 0) on ruby 1.9.2 — KUBO Takehiro <kubo@...>

久保です。

18 messages 2010/08/22
[#42092] Re: Math::atan2(0, 0) on ruby 1.9.2 — Kenta Murata <muraken@...> 2010/08/22

=1B$B$`$i$?$G$9!#=1B(B

[#42166] Ruby'sライセンスの、BSDLとのデュアルライセンスへの変更 — "NARUSE, Yui" <naruse@...>

Ruby's ライセンスは BSDL と Ruby's のデュアルライセンスになります。

14 messages 2010/08/31

[ruby-dev:42069] Re: [Bug #3708] Array#permutation がおかしな結果を返す

From: Yukihiro Matsumoto <matz@...>
Date: 2010-08-18 09:28:17 UTC
List: ruby-dev #42069
まつもと ゆきひろです

In message "Re: [ruby-dev:42068] Re: [Bug #3708] Array#permutation 	がおかしな結果を返す"
    on Wed, 18 Aug 2010 18:16:13 +0900, Kenta Murata <muraken@gmail.com> writes:

|On 2010/08/18, at 16:33, Shumpei Akai wrote:
|
|> Array#permutationの結果に,配列に含まれていないはずの値が入っています
|> 
|> % ./ruby_head -e "p [0,1,2,3,4][1,4].permutation.to_a"
|> [[0, 1, 2, 3], [0, 1, 3, 2], [0, 2, 1, 3], [0, 2, 3, 1], [0, 3, 1, 2], [0, 3, 2, 1], [1, 0, 2, 3], [1, 0, 3, 2], [1, 2, 0, 3], [1, 2, 3, 0], [1, 3, 0, 2], [1, 3, 2, 0], [2, 0, 1, 3], [2, 0, 3, 1], [2, 1, 0, 3], [2, 1, 3, 0], [2, 3, 0, 1], [2, 3, 1, 0], [3, 0, 1, 2], [3, 0, 2, 1], [3, 1, 0, 2], [3, 1, 2, 0], [3, 2, 0, 1], [3, 2, 1, 0]]
|> 
|> 
|> [0,1,2,3,4][1,4] は [1, 2, 3, 4] なので0は含まれないはずです.
|> 
|> 
|> % ./ruby_head -e "p [0,1,2,3][1,3].permutation.to_a"
|> だと正しく動きます
|
|
|ary_make_shared 関数を以下のように修正すると正常に動作します。
|
|diff --git a/array.c b/array.c
|index 51d3ad2..ea4fe43 100644
|--- a/array.c
|+++ b/array.c
|@@ -409,10 +409,7 @@ static VALUE
| ary_make_shared(VALUE ary)
| {
|     assert(!ARY_EMBED_P(ary));
|-    if (ARY_SHARED_P(ary)) {
|-       return ARY_SHARED(ary);
|-    }
|-    else if (ARY_SHARED_ROOT_P(ary)) {
|+    if (ARY_SHARED_P(ary) || ARY_SHARED_ROOT_P(ary)) {
|        return ary;
|     }
|     else if (OBJ_FROZEN(ary)) {

なるほど。コミットして下さい。

In This Thread