Changes between Initial Version and Version 4 of Ticket #22361


Ignore:
Timestamp:
Nov 3, 2009, 10:45:06 PM (14 years ago)
Author:
mf2k (Frank Schima)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #22361

    • Property Keywords ruby hash removed
    • Property Owner changed from macports-tickets@… to kimuraw@…
    • Property Port ruby added
  • Ticket #22361 – Description

    initial v4  
    33Hash equivalence fails when a value is a Fixnum > 536870911.
    44
     5{{{
    56>> {:a => 536870911}.hash == {:a => 536870911}.hash
    67=> true
     8}}}
    79
     10{{{
    811>> {:a => 536870912}.hash == {:a => 536870912}.hash
    912=> false
    10 
     13}}}