mirror of
https://github.com/python/cpython.git
synced 2025-09-05 00:11:10 +00:00
Bump up the maximum number of freeblocks
This commit is contained in:
parent
0103af397f
commit
f2b02ced7e
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ static PyTypeObject deque_type;
|
||||||
added at about the same rate as old blocks are being freed.
|
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 Py_ssize_t numfreeblocks = 0;
|
||||||
static block *freeblocks[MAXFREEBLOCKS];
|
static block *freeblocks[MAXFREEBLOCKS];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue