[#85940] [Ruby trunk Bug#14578] Forking a child process inside of a mutex crashes the ruby interpreter — ben.govero@...
Issue #14578 has been reported by bengovero (Ben Govero).
3 messages
2018/03/05
[#86205] [Ruby trunk Feature#14618] Add display width method to String for CLI — aycabta@...
Issue #14618 has been reported by aycabta (aycabta .).
3 messages
2018/03/19
[#86366] Re: [ruby-cvs:70102] usa:r63008 (trunk): get rid of test error/failure on Windows introduced at r62955 — Eric Wong <normalperson@...>
[email protected] wrote:
3 messages
2018/03/28
[ruby-core:86149] [Ruby trunk Bug#14608] Regexp::union and forward slashes
From:
jason.barnabe@...
Date:
2018-03-15 18:57:43 UTC
List:
ruby-core #86149
Issue #14608 has been reported by jason.barnabe (Jason Barnabe). ---------------------------------------- Bug #14608: Regexp::union and forward slashes https://bugs.ruby-lang.org/issues/14608 * Author: jason.barnabe (Jason Barnabe) * Status: Open * Priority: Normal * Assignee: * Target version: * ruby -v: 2.5.0 * Backport: 2.3: UNKNOWN, 2.4: UNKNOWN, 2.5: UNKNOWN ---------------------------------------- When using Regexp::union and a regular expression with a forward slash, there seem to be some inconsistencies. ~~~ ruby # this is weird Regexp.union(/\//, '') # => /(?-mix:\/)|/ Regexp.union(/\//, '') == /(?-mix:\/)|/ # => false # here is the difference Regexp.union(/\//, '').source # => "(?-mix:\\/)|" /(?-mix:\/)|/.source # => "(?-mix:/)|" ~~~ Previously reported at https://github.com/janosch-x/js_regex/issues/6 -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:[email protected]?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>