Bump up the maximum number of freeblocks

This commit is contained in:
Raymond Hettinger 2015-09-26 17:47:02 -07:00
parent 0103af397f
commit f2b02ced7e
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ static PyTypeObject deque_type;
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];