]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Bump-up block size.
authorRaymond Hettinger <python@rcn.com>
Tue, 2 Nov 2004 02:11:35 +0000 (02:11 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 2 Nov 2004 02:11:35 +0000 (02:11 +0000)
Modules/collectionsmodule.c

index f9eac8e16238f1398123d81cdf19b510b006cdfc..10b08f941f9dd3873c268e415c455e148ec8d7e3 100644 (file)
@@ -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.