From 22b4b4cef4a4ed290d4c4941674f4e472f6bc3dc Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sat, 22 Jun 2013 00:51:01 -0700 Subject: [PATCH] Arrange structure to match the common access patterns. --- Modules/_collectionsmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3