[Python-checkins] cpython: Fix regression after c8d1df9ac987

antoine.pitrou python-checkins at python.org
Sat Mar 10 23:48:46 CET 2012


http://hg.python.org/cpython/rev/713db33a4ebc
changeset:   75522:713db33a4ebc
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sat Mar 10 23:43:12 2012 +0100
summary:
  Fix regression after c8d1df9ac987
(PPC buildbot)

files:
  Include/genobject.h |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Include/genobject.h b/Include/genobject.h
--- a/Include/genobject.h
+++ b/Include/genobject.h
@@ -18,7 +18,7 @@
     struct _frame *gi_frame;
 
     /* True if generator is being executed. */
-    int gi_running;
+    char gi_running;
     
     /* The code object backing the generator */
     PyObject *gi_code;

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


More information about the Python-checkins mailing list