[Python-checkins] cpython (2.7): also backout f1dc30a1be72 for not being a bugfix

benjamin.peterson python-checkins at python.org
Sun Jun 23 20:38:18 CEST 2013


http://hg.python.org/cpython/rev/86d512e0ec66
changeset:   84288:86d512e0ec66
branch:      2.7
parent:      84283:2f1e8b7fa534
user:        Benjamin Peterson <benjamin at python.org>
date:        Sun Jun 23 11:38:11 2013 -0700
summary:
  also backout f1dc30a1be72 for not being a bugfix

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;
+    struct BLOCK *rightlink;
     PyObject *data[BLOCKLEN];
-    struct BLOCK *rightlink;
 } block;
 
 #define MAXFREEBLOCKS 10

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


More information about the Python-checkins mailing list