]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
reapply f1dc30a1be72
authorBenjamin Peterson <benjamin@python.org>
Tue, 25 Jun 2013 18:35:44 +0000 (11:35 -0700)
committerBenjamin Peterson <benjamin@python.org>
Tue, 25 Jun 2013 18:35:44 +0000 (11:35 -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