[Python-checkins] cpython (2.7): reapply f1dc30a1be72

benjamin.peterson python-checkins at python.org
Tue Jun 25 20:26:36 CEST 2013


http://hg.python.org/cpython/rev/3dec430055da
changeset:   84340:3dec430055da
branch:      2.7
parent:      84335:a29eaffa7d72
user:        Benjamin Peterson <benjamin at python.org>
date:        Tue Jun 25 11:25:26 2013 -0700
summary:
  reapply f1dc30a1be72

files:
  Modules/_collectionsmodule.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c
--- 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list