[pypy-svn] r46511 - pypy/dist/pypy/lib

tismer at codespeak.net tismer at codespeak.net
Wed Sep 12 19:57:05 CEST 2007


Author: tismer
Date: Wed Sep 12 19:57:03 2007
New Revision: 46511

Modified:
   pypy/dist/pypy/lib/stackless.py
Log:
thanks for finding this indentation bug. Maybe this prevents the bus error

Modified: pypy/dist/pypy/lib/stackless.py
==============================================================================
--- pypy/dist/pypy/lib/stackless.py	(original)
+++ pypy/dist/pypy/lib/stackless.py	Wed Sep 12 19:57:03 2007
@@ -403,7 +403,7 @@
         if self.blocked:
             raise RuntimeError, "You cannot run a blocked tasklet"
             if not self.alive:
-               raise RuntimeError, "You cannot run an unbound(dead) tasklet"
+                raise RuntimeError, "You cannot run an unbound(dead) tasklet"
         _scheduler_append(self)
 
     def remove(self):



More information about the Pypy-commit mailing list