[pypy-commit] pypy py3.3: Another fix

amauryfa noreply at buildbot.pypy.org
Thu Jul 3 23:58:18 CEST 2014


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
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]


More information about the pypy-commit mailing list