[pypy-commit] pypy default: we need to set continuation=True for these tests to work. No idea how could they work before

antocuni noreply at buildbot.pypy.org
Thu Mar 22 21:07:40 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r53927:4c31c12c5272
Date: 2012-03-22 21:00 +0100
http://bitbucket.org/pypy/pypy/changeset/4c31c12c5272/

Log:	we need to set continuation=True for these tests to work. No idea
	how could they work before

diff --git a/pypy/module/_continuation/test/test_zpickle.py b/pypy/module/_continuation/test/test_zpickle.py
--- a/pypy/module/_continuation/test/test_zpickle.py
+++ b/pypy/module/_continuation/test/test_zpickle.py
@@ -108,6 +108,7 @@
     def setup_class(cls):
         cls.space = gettestobjspace(usemodules=('_continuation', 'struct'),
                                     CALL_METHOD=True)
+        cls.space.config.translation.continuation = True
         cls.space.appexec([], """():
             global continulet, A, __name__
 


More information about the pypy-commit mailing list