diff options
author | Raymond Hettinger <python@rcn.com> | 2013-06-22 07:51:01 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-06-22 07:51:01 (GMT) |
commit | 22b4b4cef4a4ed290d4c4941674f4e472f6bc3dc (patch) | |
tree | 397c44e83a7a64a51a71a2ef57bdc019e198bff4 /Modules | |
parent | ff22984ff14067521813dd10ab70ec2bbddc32df (diff) | |
download | cpython-22b4b4cef4a4ed290d4c4941674f4e472f6bc3dc.zip cpython-22b4b4cef4a4ed290d4c4941674f4e472f6bc3dc.tar.gz cpython-22b4b4cef4a4ed290d4c4941674f4e472f6bc3dc.tar.bz2 |
Arrange structure to match the common access patterns.
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 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 |