[pypy-svn] r20399 - pypy/branch/somepbc-refactoring/pypy/module/thread/rpython
arigo at codespeak.net
arigo at codespeak.net
Tue Nov 29 16:57:29 CET 2005
Author: arigo
Date: Tue Nov 29 16:57:28 2005
New Revision: 20399
Modified:
pypy/branch/somepbc-refactoring/pypy/module/thread/rpython/exttable.py
Log:
module/thread/rpython/test fix.
Modified: pypy/branch/somepbc-refactoring/pypy/module/thread/rpython/exttable.py
==============================================================================
--- pypy/branch/somepbc-refactoring/pypy/module/thread/rpython/exttable.py (original)
+++ pypy/branch/somepbc-refactoring/pypy/module/thread/rpython/exttable.py Tue Nov 29 16:57:28 2005
@@ -30,7 +30,7 @@
s_arg, = s_argument_tuple.items
# XXX hack hack hack: emulate a call to s_bootstrap_function
s_result = bookkeeper.emulate_pbc_call(bookkeeper.position_key, s_bootstrap_function, [s_arg])
- assert bookkeeper.getpbc(None).contains(s_result), (
+ assert annmodel.s_None.contains(s_result), (
"""thread.start_new_thread(f, arg): f() should return None""")
return annmodel.SomeInteger()
More information about the Pypy-commit
mailing list