commit | f2b02ced7edfa30e3ee5f15abcdd8f45b36476f5 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sat Sep 26 17:47:02 2015 -0700 |
committer | Raymond Hettinger <python@rcn.com> | Sat Sep 26 17:47:02 2015 -0700 |
tree | 05869e8e03c70acf144d2e63e220b7c8aba6a24b | |
parent | 0103af397ff59a2feab21b954087a657201d37f7 [diff] |
Bump up the maximum number of freeblocks
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 487c765..9210e24 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c
@@ -121,7 +121,7 @@ added at about the same rate as old blocks are being freed. */ -#define MAXFREEBLOCKS 10 +#define MAXFREEBLOCKS 16 static Py_ssize_t numfreeblocks = 0; static block *freeblocks[MAXFREEBLOCKS];