]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Arrange structure to match the common access patterns.
authorRaymond Hettinger <python@rcn.com>
Sat, 22 Jun 2013 07:51:01 +0000 (00:51 -0700)
committerRaymond Hettinger <python@rcn.com>
Sat, 22 Jun 2013 07:51:01 +0000 (00:51 -0700)
Modules/_collectionsmodule.c

index 8a43d9a028a2b9f29436d33100584da77ebe8464..f175fcaa0ea185b20d7140b01bc499b10e362d2b 100644 (file)
@@ -48,8 +48,8 @@
 
 typedef struct BLOCK {
     struct BLOCK *leftlink;
-    struct BLOCK *rightlink;
     PyObject *data[BLOCKLEN];
+    struct BLOCK *rightlink;
 } block;
 
 #define MAXFREEBLOCKS 10