[#99115] [Ruby master Bug#17023] How to prevent String memory to be relocated in ruby-ffi — larskanis@...
Issue #17023 has been reported by larskanis (Lars Kanis).
22 messages
2020/07/10
[#99375] [Ruby master Feature#17055] Allow suppressing uninitialized instance variable and method redefined verbose mode warnings — merch-redmine@...
Issue #17055 has been reported by jeremyevans0 (Jeremy Evans).
29 messages
2020/07/28
[#101207] [Ruby master Feature#17055] Allow suppressing uninitialized instance variable and method redefined verbose mode warnings
— merch-redmine@...
2020/12/02
Issue #17055 has been updated by jeremyevans0 (Jeremy Evans).
[#101231] Re: [Ruby master Feature#17055] Allow suppressing uninitialized instance variable and method redefined verbose mode warnings
— Austin Ziegler <halostatue@...>
2020/12/03
What does this mean?
[ruby-core:99399] [Ruby master Bug#17092] Array#flatten with finite depth should flatten recursive arrays
From:
marcandre-ruby-core@...
Date:
2020-07-30 12:29:24 UTC
List:
ruby-core #99399
Issue #17092 has been reported by marcandre (Marc-Andre Lafortune). ---------------------------------------- Bug #17092: Array#flatten with finite depth should flatten recursive arrays https://bugs.ruby-lang.org/issues/17092 * Author: marcandre (Marc-Andre Lafortune) * Status: Open * Priority: Normal * Backport: 2.5: UNKNOWN, 2.6: UNKNOWN, 2.7: REQUIRED ---------------------------------------- Recursive arrays can not be flattened currently: ```ruby a = []; a << a a.flatten(2) # => tried to flatten recursive array ``` The only valid reason to raise an error for recursive arrays is for flatten with no argument (or negative argument); the case for finite-depth flatten is not problematic. This fix has the bonus of speeding up the finite-depth case in general. I will merge https://github.com/ruby/ruby/pull/3374, @nobu asked for backports. -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:[email protected]?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>