[#39052] Fwd: [redmine4ruby-lang:253] [Bug #1914] ruby-1.9.1-p243 failed to build from source on aix 5.3 with gcc 4.2.0 — Yugui <yugui@...>

Redmine管理用プロジェクトに報告されてしまったので転送します。

12 messages 2009/08/09
[#39264] Re: Fwd: [redmine4ruby-lang:253] [Bug #1914] ruby-1.9.1-p243 failed to build from source on aix 5.3 with gcc 4.2.0 — Yutaka Kanemoto <kinpoco@...> 2009/09/08

金本と申します。

[#39107] [Bug #1952] cannot stop with Ctrl+C — Usaku NAKAMURA <redmine@...>

Bug #1952: cannot stop with Ctrl+C

14 messages 2009/08/18

[#39167] [Bug #2000] Change the license to "GPLv2+ or Ruby's original". — Mamoru Tasaka <redmine@...>

Bug #2000: Change the license to "GPLv2+ or Ruby's original".

11 messages 2009/08/26

[#39193] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Tanaka Akira <akr@...>

In article <200908281827.n7SIRbaX003476@ci.ruby-lang.org>,

16 messages 2009/08/29
[#39194] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Nobuyoshi Nakada <nobu@...> 2009/08/29

なかだです。

[#39195] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Tanaka Akira <akr@...> 2009/08/29

In article <4a988633.9553f10a.4496.483e@mx.google.com>,

[#39196] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Nobuyoshi Nakada <nobu@...> 2009/08/29

なかだです。

[#39197] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Tanaka Akira <akr@...> 2009/08/29

In article <4a989f76.1602be0a.3de4.1131@mx.google.com>,

[#39198] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Yukihiro Matsumoto <matz@...> 2009/08/29

まつもと ゆきひろです

[#39206] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Nobuyoshi Nakada <nobu@...> 2009/08/31

なかだです。

[ruby-dev:39163] [BUG:1.9] ||= &&= doesn't return rval, but result of method

From: Yugui <yugui@...>
Date: 2009-08-26 04:01:24 UTC
List: ruby-dev #39163
Redmineプロジェクト宛に来てしまったissueを転送します。

---------- 転送メッセージ ----------
From: Joshua Hull <redmine@ruby-lang.org>
日付: 2009/08/26 11:01
件名: [redmine4ruby-lang:256] [Bug #1996] ||= &&= doesn't return rval,
but result of method
To: redmine4ruby-lang@qwik.jp


Bug #1996: ||= &&= doesn't return rval, but result of method
http://redmine.ruby-lang.org/issues/show/1996

起票者: Joshua Hull
ステータス: Open, 優先度: Normal

Inconsistent behvaiour introduced in Ruby 1.9.1 with compound
assignment operators.

>> o = Object.new
=> #<Object:0x00000100975a80>
>> def o.foo=(x); x * 2 end
=> nil
>> def o.foo; nil end
=> nil
>> o.foo = 1
=> 1
>> o.foo ||= 1
=> 2
>> RUBY_VERSION
=> "1.9.2"
>> RUBY_RELEASE_DATE
=> "2009-07-24"
>> RUBY_REVISION
=> 24260

In ruby 1.8

>> o = Object.new
=> #<Object:0xe6c8>
>> def o.foo=(x); x * 2 end
=> nil
>> def o.foo; nil end
=> nil
>> o.foo = 1
=> 1
>> o.foo ||= 1
=> 1
>> RUBY_VERSION
=> "1.8.7"


----------------------------------------
http://redmine.ruby-lang.org

--
archive-> http://qwik.jp/redmine4ruby-lang/146.html
ML-> redmine4ruby-lang@qwik.jp

In This Thread

Prev Next