]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
hashtable.h now supports keys of any size
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 21 Mar 2016 21:00:58 +0000 (22:00 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Mon, 21 Mar 2016 21:00:58 +0000 (22:00 +0100)
commit285cf0a6014af147b82a3446d9e088ad0332720d
tree829fa2b00f39bf7ff31496cca47ddd127b135e4f
parent928bff0b26adb643a7078575c9075b4b709c1b16
hashtable.h now supports keys of any size

Issue #26588: hashtable.h now supports keys of any size, not only
sizeof(void*). It allows to support key larger than sizeof(void*), but also to
use less memory for key smaller than sizeof(void*).
Modules/_tracemalloc.c
Modules/hashtable.c
Modules/hashtable.h
Python/marshal.c