commit | 22b4b4cef4a4ed290d4c4941674f4e472f6bc3dc | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sat Jun 22 00:51:01 2013 -0700 |
committer | Raymond Hettinger <python@rcn.com> | Sat Jun 22 00:51:01 2013 -0700 |
tree | 397c44e83a7a64a51a71a2ef57bdc019e198bff4 | |
parent | ff22984ff14067521813dd10ab70ec2bbddc32df [diff] |
Arrange structure to match the common access patterns.
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 8a43d9a..f175fca 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