http://hg.python.org/cpython/rev/e95161820160 changeset: 84343:e95161820160 branch: 2.7 user: Benjamin Peterson <benjamin at python.org> date: Tue Jun 25 11:35:44 2013 -0700 summary: reapply f1dc30a1be72 files: Modules/_collectionsmodule.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -48,8 +48,8 @@ typedef struct BLOCK { struct BLOCK *leftlink; + PyObject *data[BLOCKLEN]; struct BLOCK *rightlink; - PyObject *data[BLOCKLEN]; } block; #define MAXFREEBLOCKS 10 -- Repository URL: http://hg.python.org/cpython