From 276c3718e3aa3954026297a9effcd952ca695aa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Mon, 17 Nov 2008 16:22:11 +0000 Subject: Issue #3327: Don't overallocate in the modules_by_index list. --- Python/pystate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/pystate.c') diff --git a/Python/pystate.c b/Python/pystate.c index 2a9b7443f9..fe5de5f4d2 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -234,7 +234,7 @@ _PyState_AddModule(PyObject* module, struct PyModuleDef* def) if (!def) return -1; if (!state->modules_by_index) { - state->modules_by_index = PyList_New(20); + state->modules_by_index = PyList_New(0); if (!state->modules_by_index) return -1; } -- cgit v1.2.1