[#86520] [Ruby trunk Bug#14681] `syswrite': stream closed in another thread (IOError) — samuel@...
Issue #14681 has been reported by ioquatix (Samuel Williams).
3 messages
2018/04/12
[#86755] [Ruby trunk Feature#14723] [WIP] sleepy GC — normalperson@...
Issue #14723 has been reported by normalperson (Eric Wong).
6 messages
2018/04/29
[ruby-core:86663] [Ruby trunk Bug#14707] String#scan(/\K/) has changed its behavior in ruby 2.5
From:
knu@...
Date:
2018-04-24 11:48:53 UTC
List:
ruby-core #86663
Issue #14707 has been reported by knu (Akinori MUSHA). ---------------------------------------- Bug #14707: String#scan(/\K/) has changed its behavior in ruby 2.5 https://bugs.ruby-lang.org/issues/14707 * Author: knu (Akinori MUSHA) * Status: Open * Priority: Normal * Assignee: * Target version: * ruby -v: ruby 2.5.1p59 (2018-03-31 revision 63049) [x86_64-darwin17] * Backport: 2.3: UNKNOWN, 2.4: UNKNOWN, 2.5: UNKNOWN ---------------------------------------- It seems `\K` does not work as expected any more: ``` % ruby -ve 'p "a1 a2 a3".scan(/a\K./)' ruby 2.3.7p456 (2018-03-28 revision 63014) [x86_64-darwin17] ["1", "2", "3"] ruby 2.4.5p297 (2018-03-29 revision 63036) [x86_64-darwin17] ["1", "2", "3"] ruby 2.5.1p59 (2018-03-31 revision 63049) [x86_64-darwin17] ["a1", "a2", "a3"] ``` I'm not sure if this is intended, but at least there is no mention for this in the NEWS file. -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>