[pypy-svn] r28918 - pypy/dist/pypy/module/_stackless
mwh at codespeak.net
mwh at codespeak.net
Sat Jun 17 18:55:08 CEST 2006
Author: mwh
Date: Sat Jun 17 18:55:06 2006
New Revision: 28918
Modified:
pypy/dist/pypy/module/_stackless/interp_coroutine.py
Log:
Stephan: you forgot to rename finished() for Coroutine()
It also looks like you forgot to run the tests :)
This fixes them all.
Modified: pypy/dist/pypy/module/_stackless/interp_coroutine.py
==============================================================================
--- pypy/dist/pypy/module/_stackless/interp_coroutine.py (original)
+++ pypy/dist/pypy/module/_stackless/interp_coroutine.py Sat Jun 17 18:55:06 2006
@@ -298,7 +298,7 @@
def goodbye(self):
"Called just after execution is transferred away from this coroutine."
- def finished(self):
- "Called just after frame died"
+ def finish(self, exc=None):
+ "stephan forgot me"
# _________________________________________________
More information about the Pypy-commit
mailing list