Commit f2b02ced authored by Raymond Hettinger's avatar Raymond Hettinger

Bump up the maximum number of freeblocks

parent 0103af39
......@@ -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];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment