commit | 276c3718e3aa3954026297a9effcd952ca695aa7 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Mon Nov 17 16:22:11 2008 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Mon Nov 17 16:22:11 2008 +0000 |
tree | de1b6ffb02ec9d559ee10b9a5d380f9721d9ca34 | |
parent | 23b4bfb91f3389a085a4fffcf4bb25b899046989 [diff] [blame] |
Issue #3327: Don't overallocate in the modules_by_index list.
diff --git a/Python/pystate.c b/Python/pystate.c index 2a9b744..fe5de5f 100644 --- a/Python/pystate.c +++ b/Python/pystate.c
@@ -234,7 +234,7 @@ 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; }