diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-06-25 18:25:26 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-06-25 18:25:26 (GMT) |
commit | 13dd1f947e350f48a031897075f697d1f65b0bbd (patch) | |
tree | c82708db54f5ef79f4e2b2024adbfaa3e5eb1378 /Modules | |
parent | c1a44269da5ac707ed65346e42c233012d8d0759 (diff) | |
download | cpython-13dd1f947e350f48a031897075f697d1f65b0bbd.zip cpython-13dd1f947e350f48a031897075f697d1f65b0bbd.tar.gz cpython-13dd1f947e350f48a031897075f697d1f65b0bbd.tar.bz2 |
reapply f1dc30a1be72
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_collectionsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 371631c..abd80e0 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -47,8 +47,8 @@ typedef struct BLOCK { struct BLOCK *leftlink; - struct BLOCK *rightlink; PyObject *data[BLOCKLEN]; + struct BLOCK *rightlink; } block; #define MAXFREEBLOCKS 10 |