[#68845] [Ruby trunk - Feature #11056] [PATCH] lib/net/*: use io/wait methods instead of IO.select — normalperson@...
Issue #11056 has been updated by Eric Wong.
3 messages
2015/04/11
[#68945] [Ruby trunk - Feature #11083] [Open] Gemify net-telnet — shibata.hiroshi@...
Issue #11083 has been reported by Hiroshi SHIBATA.
4 messages
2015/04/21
[#68951] Re: [Ruby trunk - Feature #11083] [Open] Gemify net-telnet
— Eric Wong <normalperson@...>
2015/04/21
shibata.hiroshi@gmail.com wrote:
[#69012] [Ruby trunk - Feature #11105] [Open] ES6-like hash literals — shugo@...
Issue #11105 has been reported by Shugo Maeda.
5 messages
2015/04/29
[ruby-core:68840] [Ruby trunk - Bug #10111] [Rejected] gdbm truncated UTF-8 data problem
From:
akr@...
Date:
2015-04-11 05:15:52 UTC
List:
ruby-core #68840
Issue #10111 has been updated by Akira Tanaka. Status changed from Open to Rejected gdbm (and dbm) doesn't record encoding. So, current behavior is natural and not a bug, I think. ---------------------------------------- Bug #10111: gdbm truncated UTF-8 data problem https://bugs.ruby-lang.org/issues/10111#change-52104 * Author: KiHyun Kang * Status: Rejected * Priority: Normal * Assignee: Aaron Patterson * ruby -v: ruby 2.1.2p95 (2014-05-08 revision 45877) [x86_64-linux] * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN ---------------------------------------- Reproducible script is here. ~~~ # coding: utf-8 require 'gdbm' data = "\xEA\xB0\x80ABCDEF" db = GDBM.new( 'test.db', 0666 ) db['key'] = data throw 'data truncated!!' if db['key'] != data ~~~ -- https://bugs.ruby-lang.org/