[#27384] yaml and pp dump core — sheepman <sheepman@...>
こんばんは、sheepman です。
[#27406] Ripper.new("").parse blocks — Tanaka Akira <akr@...17n.org>
先ほど、端末から test-all したときに途中でブロックすることに
なかだです。
まつもと ゆきひろです
咳といいます。
[#27417] selector namespace — Shugo Maeda <shugo@...>
前田です。
なかだです。
前田です。
なかだです。
前田です。
原です。
なかだです。
[#27428] cannot build ruby with byacc (1.8) — "U.Nakamura" <usa@...>
こんにちは、なかむら(う)です。
なかだです。
こんにちは、なかむら(う)です。
山本です。
なかだです。
山本です。
[#27429] 1.8.4 relrase plan? — "URABE Shyouhei aka. mput" <root@...>
卜部です。 RubyConf にかまけていた間に
なかだです。
[#27449] --without-hoge — "U.Nakamura" <usa@...>
こんにちは、なかむら(う)です。
[#27458] Matrix class is broken without mathn — akira yamada / やまだあきら <akira@...>
Debianユーザからrequire "mathn"しないときに
まつもと ゆきひろです
酒井といいます。
まつもと ゆきひろです
けいじゅ@いしつかです.
原です。
けいじゅ@いしつかです.
原です。
けいじゅ@いしつかです.
原です。
[#27460] Re: [ruby-cvs:15780] ruby, ruby/lib: * lib/mkmf.rb (create_makefile): do not unnecessary empty directories. — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp>
山本です。
なかだです。
[#27470] def Foo::Bar.baz; end — "URABE Shyouhei aka.mput" <root@...>
卜部です。
[#27484] 1.8.4 feature freeze? — "URABE Shyouhei aka. mput" <root@...>
卜部です。
まつもと ゆきひろです
-----BEGIN PGP SIGNED MESSAGE-----
まつもと ゆきひろです
-----BEGIN PGP SIGNED MESSAGE-----
卜部です。
[#27492] Re: [ ruby-Bugs-2613 ] building ruby 1.8.3 on Solaris — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp>
山本です。
まつもと ゆきひろです
わたなべです。
山本です。
山本です。
こんにちは、なかむら(う)です。
なかだです。
まつもと ゆきひろです
こんにちは、なかむら(う)です。
まつもと ゆきひろです
こんにちは、なかむら(う)です。
[#27511] RCR 322: Use log identities to improve BigMath::log performance — Yukihiro Matsumoto <matz@...>
まつもと ゆきひろです
小林です。
まつもと ゆきひろです
小林です。
まつもと ゆきひろです
[#27513] broken Qtrue in 64bit environment — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp>
山本です。
[#27532] [win32] replaced symbols — nobuyoshi nakada <nobuyoshi.nakada@...>
なかだです。
[#27535] Re: [ruby-list:41402] Re: 全角スペースを区切りとした文字列分解で — Kazuhiro NISHIYAMA <zn@...>
西山和広です。
[#27551] 1.8.4 検証を(だれが|どのように)行うか — "URABE Shyouhei aka.mput" <root@...>
さて、 1.8.4-Preview1
植田@ネットフォレストと申します。
山本です。
卜部です。
山本です。
なかだです。
こんにちは、なかむら(う)です。
まつもと ゆきひろです
こんにちは、なかむら(う)です。
In message <20051031093107.5B79.USA@garbagecollect.jp>
こんにちは、なかむら(う)です。
卜部です。
[#27580] 1.8.4 open problems? — "URABE Shyouhei aka.mput" <root@...>
卜部です。
[ruby-dev:27397] Re: fail on test/rss
なかだです。
At Thu, 6 Oct 2005 13:39:37 +0900,
Yukihiro Matsumoto wrote in [ruby-dev:27395]:
> その後考えたのですが、
>
> * nil.to_aは復活させる
> * Array()はto_ary,to_aを試し、どちらもなければ例外
>
> という仕様はどうかと考えています。非互換ですが。
多重代入元が多値かどうかわからないときに無闇に*をつけるのはよくない、と
いうことでしょうか。
Index: eval.c
===================================================================
RCS file: /cvs/ruby/src/ruby/eval.c,v
retrieving revision 1.835
diff -U2 -p -u -r1.835 eval.c
--- eval.c 5 Oct 2005 16:15:16 -0000 1.835
+++ eval.c 6 Oct 2005 09:57:38 -0000
@@ -2646,5 +2646,13 @@ static VALUE
splat_value(VALUE v)
{
- return rb_values_from_ary(rb_convert_type(v, T_ARRAY, "Array", "to_a"));
+ VALUE tmp = rb_check_array_type(v);
+
+ if (NIL_P(tmp)) {
+ v = rb_convert_type(v, T_ARRAY, "Array", "to_a");
+ }
+ else {
+ v = tmp;
+ }
+ return rb_values_from_ary(v);
}
Index: test/net/http/test_http.rb
===================================================================
RCS file: /cvs/ruby/src/ruby/test/net/http/test_http.rb,v
retrieving revision 1.2
diff -U2 -p -r1.2 test_http.rb
--- test/net/http/test_http.rb 24 Sep 2005 11:25:29 -0000 1.2
+++ test/net/http/test_http.rb 6 Oct 2005 05:23:52 -0000
@@ -32,5 +32,5 @@ module TestNetHTTP_version_1_1_methods
def _test_get__get(http)
- res, body = *http.get('/')
+ res, body = http.get('/')
assert_kind_of Net::HTTPResponse, res
assert_kind_of String, res.body
@@ -62,5 +62,5 @@ module TestNetHTTP_version_1_1_methods
def _test_get__chunked(http)
buf = ''
- res, body = *http.get('/') {|s| buf << s }
+ res, body = http.get('/') {|s| buf << s }
assert_kind_of Net::HTTPResponse, res
# assert_kind_of String, res.body
@@ -87,5 +87,5 @@ module TestNetHTTP_version_1_1_methods
def test_get__implicit_start
- res, body = *new().get('/')
+ res, body = new().get('/')
assert_kind_of Net::HTTPResponse, res
assert_kind_of String, body
--
--- 僕の前にBugはない。
--- 僕の後ろにBugはできる。
中田 伸悦