summaryrefslogtreecommitdiffstats
path: root/Modules/collectionsmodule.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-11-02 02:11:35 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-11-02 02:11:35 (GMT)
commit7d112df94f97cec372bdb7f15eb265ded908da50 (patch)
tree066c7dac28068c00f7d8d332f547659b9d22a3dc /Modules/collectionsmodule.c
parentf7010bed894d73c6e4fdc7e8c118395bb4dda238 (diff)
downloadcpython-7d112df94f97cec372bdb7f15eb265ded908da50.zip
cpython-7d112df94f97cec372bdb7f15eb265ded908da50.tar.gz
cpython-7d112df94f97cec372bdb7f15eb265ded908da50.tar.bz2
Bump-up block size.
Diffstat (limited to 'Modules/collectionsmodule.c')
-rw-r--r--Modules/collectionsmodule.c2
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.