summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-06-25 18:26:20 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-06-25 18:26:20 (GMT)
commit3968e299593f6cec7a79fab41fa43f32da61b9a9 (patch)
treee2055c9f0c9246f5f6d870c102b329fa35dcaf30 /Modules
parent13dd1f947e350f48a031897075f697d1f65b0bbd (diff)
downloadcpython-3968e299593f6cec7a79fab41fa43f32da61b9a9.zip
cpython-3968e299593f6cec7a79fab41fa43f32da61b9a9.tar.gz
cpython-3968e299593f6cec7a79fab41fa43f32da61b9a9.tar.bz2
reapply f1dc30a1be72
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_collectionsmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c
index abd80e0..371631c 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