Author: Amaury Forgeot d'Arc <[email protected]>
Branch: py3.3
Changeset: r72346:ca2e17af825d
Date: 2014-06-23 17:48 +0200
http://bitbucket.org/pypy/pypy/changeset/ca2e17af825d/
Log: Another fix
diff --git a/pypy/module/cpyext/test/test_thread.py
b/pypy/module/cpyext/test/test_thread.py
--- a/pypy/module/cpyext/test/test_thread.py
+++ b/pypy/module/cpyext/test/test_thread.py
@@ -18,7 +18,7 @@
results = []
def some_thread():
res = module.get_thread_ident()
- results.append((res, threading._get_ident()))
+ results.append((res, threading.get_ident()))
some_thread()
assert results[0][0] == results[0][1]
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit