[pypy-svn] r12574 - pypy/dist/pypy/objspace/flow

arigo at codespeak.net arigo at codespeak.net
Thu May 19 21:34:28 CEST 2005


Author: arigo
Date: Thu May 19 21:34:28 2005
New Revision: 12574

Modified:
   pypy/dist/pypy/objspace/flow/flowcontext.py
Log:
Quick fix for the Pygame viewer...


Modified: pypy/dist/pypy/objspace/flow/flowcontext.py
==============================================================================
--- pypy/dist/pypy/objspace/flow/flowcontext.py	(original)
+++ pypy/dist/pypy/objspace/flow/flowcontext.py	Thu May 19 21:34:28 2005
@@ -21,7 +21,7 @@
 
 class SpamBlock(Block):
     
-    __slots__ = "dead framestate".split()
+    __slots__ = "dead framestate fillcolor".split()
 
     def __init__(self, framestate):
         Block.__init__(self, framestate.getvariables())
@@ -37,7 +37,7 @@
 
 class EggBlock(Block):
 
-    __slots__ = "prevblock booloutcome last_exception".split()
+    __slots__ = "prevblock booloutcome last_exception fillcolor".split()
 
     def __init__(self, inputargs, prevblock, booloutcome):
         Block.__init__(self, inputargs)



More information about the Pypy-commit mailing list