From: Raymond Hettinger Date: Sat, 22 Jun 2013 07:51:01 +0000 (-0700) Subject: Arrange structure to match the common access patterns. X-Git-Tag: v2.7.6rc1~348 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=22b4b4cef4a4ed290d4c4941674f4e472f6bc3dc;p=thirdparty%2FPython%2Fcpython.git Arrange structure to match the common access patterns. --- diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 8a43d9a028a2..f175fcaa0ea1 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -48,8 +48,8 @@ typedef struct BLOCK { struct BLOCK *leftlink; - struct BLOCK *rightlink; PyObject *data[BLOCKLEN]; + struct BLOCK *rightlink; } block; #define MAXFREEBLOCKS 10