[pypy-svn] r74366 - pypy/trunk/pypy/module/cpyext/test
benjamin at codespeak.net
benjamin at codespeak.net
Tue May 4 22:55:10 CEST 2010
Author: benjamin
Date: Tue May 4 22:55:09 2010
New Revision: 74366
Modified:
pypy/trunk/pypy/module/cpyext/test/test_thread.py
Log:
don't need to pass space
Modified: pypy/trunk/pypy/module/cpyext/test/test_thread.py
==============================================================================
--- pypy/trunk/pypy/module/cpyext/test/test_thread.py (original)
+++ pypy/trunk/pypy/module/cpyext/test/test_thread.py Tue May 4 22:55:09 2010
@@ -11,7 +11,7 @@
def test_get_thread_ident(self, space, api):
results = []
def some_thread():
- res = api.PyThread_get_thread_ident(space)
+ res = api.PyThread_get_thread_ident()
results.append((res, thread.get_ident()))
some_thread()
More information about the Pypy-commit
mailing list