[#45518] [ruby-trunk - Bug #6302][Open] irb で math-mode 中でも conf.math_mode に nil を代入すると math-mode を抜ける事ができる — "sho-h (Sho Hashimoto)" <sho-h@...>
5 messages
2012/04/15
[#45530] [ruby-trunk - Feature #6311][Open] memmem()によるrb_memsearch()の高速化 — "Glass_saga (Masaki Matsushita)" <glass.saga@...>
12 messages
2012/04/17
[#45533] Re: [ruby-cvs:42559] naruse:r35383 (trunk): Revert r35339-35343 because of no tests. — Yukihiro Matsumoto <matz@...>
まつもと ゆきひろです
6 messages
2012/04/18
[#45534] Re: [ruby-cvs:42559] naruse:r35383 (trunk): Revert r35339-35343 because of no tests.
— Hiroshi Nakamura <nahi@...>
2012/04/18
(2012/04/19 2:02), Yukihiro Matsumoto wrote:
[#45535] Re: [ruby-cvs:42559] naruse:r35383 (trunk): Revert r35339-35343 because of no tests.
— "NARUSE, Yui" <naruse@...>
2012/04/19
2012年4月19日6:10 Hiroshi Nakamura <nahi@ruby-lang.org>:
[#45541] drb SSL test timeout — Tanaka Akira <akr@...>
Debian wheezy において、test_drbssl.rb のテストで 100秒の timeout にひっかかります。
10 messages
2012/04/21
[#45542] Re: drb SSL test timeout
— Masatoshi SEKI <m_seki@...>
2012/04/21
咳といいます。
[#45547] Re: drb SSL test timeout
— Tanaka Akira <akr@...>
2012/04/22
2012年4月22日6:52 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>:
[#45548] Re: drb SSL test timeout
— Masatoshi SEKI <m_seki@...>
2012/04/22
咳といいます。
[#45571] [ruby-trunk - Feature #6349][Open] Iconv の復活を希望します — "kyanagi (Kouhei Yanagita)" <redmine@...>
7 messages
2012/04/24
[#45572] Re: [ruby-dev:45571] [ruby-trunk - Feature #6349][Open] Iconv の復活を希望します
— "Martin J. Dürst" <duerst@...>
2012/04/24
やなぎたさん、こんにちは。
[ruby-dev:45589] [ruby-trunk - Bug #5358][Closed] YAML 中のタグの扱いについて
From:
"ayumin (Ayumu AIZAWA)" <ayumu.aizawa@...>
Date:
2012-04-27 15:26:02 UTC
List:
ruby-dev #45589
Issue #5358 has been updated by ayumin (Ayumu AIZAWA).
Status changed from Assigned to Closed
報告者が納得されているようなのでこのチケットはCloseします。
----------------------------------------
Bug #5358: YAML 中のタグの扱いについて
https://bugs.ruby-lang.org/issues/5358#change-26257
Author: sho-h (Sho Hashimoto)
Status: Closed
Priority: Normal
Assignee: tenderlovemaking (Aaron Patterson)
Category: ext
Target version: 1.9.3
ruby -v: ruby 1.9.2p290
http://yaml.org/ によると、以下はいずれも同じグローバルタグを指定してると思うのですが、結果が異なります。
YAML.load("--- !<tag:yaml.org,2002>:str foo")
# => #<YAML::DomainType:0xf71d4780 @domain="yaml.org,2002", @type_id="<tag:yaml.org,2002>:str", @value="foo">
YAML.load("--- !!str foo")
# => #<YAML::PrivateType:0xf71e0a44 @type_id="str", @value="foo">
一方、以下はいずれも同じ結果になります。
YAML.load("--- foo") # => "foo"
YAML.load("--- !str foo") # => "foo"
YAML.load("--- !tag:yaml.org,2002:str foo") # => "foo"
これらについて、もしかして以下のバグがあるのではないでしょうか。
* !str は間違ってグローバルタグとして扱われている
* !tag:yaml.org,2002 は間違ってグローバルタグとして扱われている
* !!str はグローバルタグとして扱われていない
--
http://bugs.ruby-lang.org/