diff options
author | Raymond Hettinger <python@rcn.com> | 2004-11-02 02:11:35 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-11-02 02:11:35 (GMT) |
commit | 7d112df94f97cec372bdb7f15eb265ded908da50 (patch) | |
tree | 066c7dac28068c00f7d8d332f547659b9d22a3dc /Modules | |
parent | f7010bed894d73c6e4fdc7e8c118395bb4dda238 (diff) | |
download | cpython-7d112df94f97cec372bdb7f15eb265ded908da50.zip cpython-7d112df94f97cec372bdb7f15eb265ded908da50.tar.gz cpython-7d112df94f97cec372bdb7f15eb265ded908da50.tar.bz2 |
Bump-up block size.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/collectionsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/collectionsmodule.c b/Modules/collectionsmodule.c index f9eac8e..10b08f9 100644 --- a/Modules/collectionsmodule.c +++ b/Modules/collectionsmodule.c @@ -13,7 +13,7 @@ * length of a cache line. */ -#define BLOCKLEN 46 +#define BLOCKLEN 62 #define CENTER ((BLOCKLEN - 1) / 2) /* A `dequeobject` is composed of a doubly-linked list of `block` nodes. |