• Fred Drake's avatar
    This patch addresses two main issues: (1) There exist some non-fatal · 13634cf7
    Fred Drake yazdı
    errors in some of the hash algorithms. For exmaple, in float_hash and
    complex_hash a certain part of the value is not included in the hash
    calculation. See Tim's, Guido's, and my discussion of this on
    python-dev in May under the title "fix float_hash and complex_hash for
    64-bit *nix"
    
    (2) The hash algorithms that use pointers (e.g. func_hash, code_hash)
    are universally not correct on Win64 (they assume that sizeof(long) ==
    sizeof(void*))
    
    As well, this patch significantly cleans up the hash code. It adds the
    two function _Py_HashDouble and _PyHash_VoidPtr that the various
    hashing routine are changed to use.
    
    These help maintain the hash function invariant: (a==b) =>
    (hash(a)==hash(b))) I have added Lib/test/test_hash.py and
    Lib/test/output/test_hash to test this for some cases.
    13634cf7
Adı
Son kayıt (commit)
Son güncelleme
..
output Loading commit data...
__init__.py Loading commit data...
audiotest.au Loading commit data...
autotest.py Loading commit data...
greyrgb.uue Loading commit data...
pystone.py Loading commit data...
re_tests.py Loading commit data...
regex_tests.py Loading commit data...
regrtest.py Loading commit data...
reperf.py Loading commit data...
sortperf.py Loading commit data...
test_MimeWriter.py Loading commit data...
test_al.py Loading commit data...
test_array.py Loading commit data...
test_atexit.py Loading commit data...
test_audioop.py Loading commit data...
test_b1.py Loading commit data...
test_b2.py Loading commit data...
test_binascii.py Loading commit data...
test_binhex.py Loading commit data...
test_bsddb.py Loading commit data...
test_builtin.py Loading commit data...
test_cd.py Loading commit data...
test_cl.py Loading commit data...
test_cmath.py Loading commit data...
test_contains.py Loading commit data...
test_cpickle.py Loading commit data...
test_crypt.py Loading commit data...
test_dbm.py Loading commit data...
test_dl.py Loading commit data...
test_errno.py Loading commit data...
test_exceptions.py Loading commit data...
test_extcall.py Loading commit data...
test_fcntl.py Loading commit data...
test_fork1.py Loading commit data...
test_gdbm.py Loading commit data...
test_gl.py Loading commit data...
test_grammar.py Loading commit data...
test_grp.py Loading commit data...
test_gzip.py Loading commit data...
test_hash.py Loading commit data...
test_imageop.py Loading commit data...
test_imgfile.py Loading commit data...
test_linuxaudiodev.py Loading commit data...
test_long.py Loading commit data...
test_longexp.py Loading commit data...
test_math.py Loading commit data...
test_md5.py Loading commit data...
test_mmap.py Loading commit data...
test_new.py Loading commit data...
test_nis.py Loading commit data...
test_ntpath.py Loading commit data...
test_opcodes.py Loading commit data...
test_operations.py Loading commit data...
test_operator.py Loading commit data...
test_pickle.py Loading commit data...
test_pkg.py Loading commit data...
test_popen2.py Loading commit data...
test_pow.py Loading commit data...
test_pwd.py Loading commit data...
test_pyexpat.py Loading commit data...
test_re.py Loading commit data...
test_regex.py Loading commit data...
test_rfc822.py Loading commit data...
test_rgbimg.py Loading commit data...
test_rotor.py Loading commit data...
test_select.py Loading commit data...
test_sha.py Loading commit data...
test_signal.py Loading commit data...
test_socket.py Loading commit data...
test_strftime.py Loading commit data...
test_string.py Loading commit data...
test_strop.py Loading commit data...
test_struct.py Loading commit data...
test_sunaudiodev.py Loading commit data...
test_support.py Loading commit data...
test_thread.py Loading commit data...
test_time.py Loading commit data...
test_timing.py Loading commit data...
test_tokenize.py Loading commit data...
test_types.py Loading commit data...
test_unicode.py Loading commit data...
test_unicodedata.py Loading commit data...
test_unpack.py Loading commit data...
test_userdict.py Loading commit data...
test_userlist.py Loading commit data...
test_userstring.py Loading commit data...
test_winreg.py Loading commit data...
test_winsound.py Loading commit data...
test_xmllib.py Loading commit data...
test_zipfile.py Loading commit data...
test_zlib.py Loading commit data...
testall.py Loading commit data...
testimg.uue Loading commit data...
testimgr.uue Loading commit data...
testrgb.uue Loading commit data...
tokenize_tests.py Loading commit data...