[#536] SEVG in bignum.c:505... — Sean Chittenden <sean@...>
$ ruby -e 'p [].to_s.strip.to_i'
5 messages
2002/10/13
[#537] darwin shared library patch — Eric Melville <eric@...>
In Darwin, the preferred way to build shared libraries is with two level
9 messages
2002/10/13
[#539] Re: darwin shared library patch
— "Akinori MUSHA" <knu@...>
2002/10/13
Hi,
[#544] Re: darwin shared library patch
— Eric Melville <eric@...>
2002/10/16
> The patch seems to make ENV[]= coredump.
[#546] Re: darwin shared library patch
— "Akinori MUSHA" <knu@...>
2002/10/16
At Thu, 17 Oct 2002 01:41:49 +0900,
[#541] Patch for MacOS X dln.c — Luc B駘anger <belanglu@...>
I have a patch for the dynamic linker in MacOS X, which permit to load
7 messages
2002/10/13
Hash suprise
From:
Torsten Rer <torsten.rueger@...>
Date:
2002-10-09 07:48:46 UTC
List:
ruby-core #534
Moi
I was trying to modify hash keys (strings) yesterday, and found to my
surprise that they are frozen. Why ?
So when I
1 put a string key into a map then the key === the original
2 modify the original string, the key is not the same as the original
anymore
3 I repeat this experiment with another class , and 2 changes to true,
so the key is the the same as the modified object (as expected)
This difference in behaviour is in rb_hash_aset, where the type is
checked for String and a copy made in that case.
I was quite surprised, is there a rationale ?
Thanks
Torsten