From: Raymond Hettinger Date: Tue, 2 Nov 2004 02:11:35 +0000 (+0000) Subject: Bump-up block size. X-Git-Tag: v2.4b2~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7d112df94f97cec372bdb7f15eb265ded908da50;p=thirdparty%2FPython%2Fcpython.git Bump-up block size. --- diff --git a/Modules/collectionsmodule.c b/Modules/collectionsmodule.c index f9eac8e16238..10b08f941f9d 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.