Author: Armin Rigo <[email protected]>
Branch:
Changeset: r47071:68371db86590
Date: 2011-09-04 12:55 +0200
http://bitbucket.org/pypy/pypy/changeset/68371db86590/
Log: Fix?
diff --git a/lib_pypy/pypy_test/test_coroutine.py
b/lib_pypy/pypy_test/test_coroutine.py
--- a/lib_pypy/pypy_test/test_coroutine.py
+++ b/lib_pypy/pypy_test/test_coroutine.py
@@ -2,7 +2,7 @@
from py.test import skip, raises
try:
- from lib_pypy.stackless import coroutine, CoroutineExit
+ from stackless import coroutine, CoroutineExit
except ImportError, e:
skip('cannot import stackless: %s' % (e,))
@@ -20,10 +20,6 @@
assert not co.is_zombie
def test_is_zombie_del_without_frame(self):
- try:
- import _stackless # are we on pypy with a stackless build?
- except ImportError:
- skip("only works on pypy-c-stackless")
import gc
res = []
class MyCoroutine(coroutine):
@@ -45,10 +41,6 @@
assert res[0], "is_zombie was False in __del__"
def test_is_zombie_del_with_frame(self):
- try:
- import _stackless # are we on pypy with a stackless build?
- except ImportError:
- skip("only works on pypy-c-stackless")
import gc
res = []
class MyCoroutine(coroutine):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit