From: Benjamin Peterson Date: Sun, 23 Jun 2013 18:38:11 +0000 (-0700) Subject: also backout f1dc30a1be72 for not being a bugfix X-Git-Tag: v2.7.6rc1~339 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=478b08ee5a7b68348d6d287f667d1369baa34e92;p=thirdparty%2FPython%2Fcpython.git also backout f1dc30a1be72 for not being a bugfix --- diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index abd80e06c431..371631ce2661 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -47,8 +47,8 @@ typedef struct BLOCK { struct BLOCK *leftlink; - PyObject *data[BLOCKLEN]; struct BLOCK *rightlink; + PyObject *data[BLOCKLEN]; } block; #define MAXFREEBLOCKS 10