shevegen (Robert A. Heiler) wrote: > Not sure if it can be removed, but I think you can change the status > ... Someone did, thanks! > To the bug report, just out of curiosity, can you avoid the UTF > ... Yes: `Dir.glob('*a'.encode...Gondolin (Damien Robert)
With ruby 2.5.0p0, in a folder that contains a file encoded in latin-1, I get the following error: ~~~ ruby Dir.glob('*a', File::FNM_CASEFOLD) ArgumentError: invalid byte sequence in UTF-8 ~~~ Note that `Dir.glob('*', File::FNM_...Gondolin (Damien Robert)
With ruby 2.5.0p0, in a folder that contains a file encoded in latin-1, I get the following error: ~~~ ruby Dir.glob('*a', File::FNM_CASEFOLD) ArgumentError: invalid byte sequence in UTF-8 ~~~ Note that `Dir.glob('*', File::FNM_...Gondolin (Damien Robert)
With ruby 2.5.0p0, in a folder that contains a file encoded in latin-1, I get the following error: ~~~ ruby Dir.glob('*a', File::FNM_CASEFOLD) ArgumentError: invalid byte sequence in UTF-8 ~~~ Note that `Dir.glob('*', File::FNM_...Gondolin (Damien Robert)
nobu (Nobuyoshi Nakada) wrote: > Could you enable debugging? So I *think* I have managed to bisect the segfault. When I comment a specific test I never see the segfault, but when I uncomment it I get (sometimes) the segfault. The tes...Gondolin (Damien Robert)
shugo (Shugo Maeda) wrote: > The behavior was changed by Feature #8571. Well I prefer that this feature remains so that's nice! But this probably means that the spec should be updated then?Gondolin (Damien Robert)
Thanks for the answers! shugo (Shugo Maeda) wrote: > The behavior of my first proposal was what you expected, but it was changed to reduce implicit effects of refinements. So should I expect that in future ruby versions `using M` ...Gondolin (Damien Robert)
Consider the following code: ~~~ruby class Foo def foo "Foo#foo" end def bar "Foo#bar" end end class Bar < Foo def foo "Bar#foo -> "+super end def bar "Bar#bar -> "+super end end modu...Gondolin (Damien Robert)
Damien Robert wrote: > The code is in https://github.com/DamienRobert/drain > ... PS: I apologize that I was not able to get a minimal working example. I tried to do so in 'test_graph_segfault.rb' but it does not segfault. However remo...Gondolin (Damien Robert)