[pypy-commit] pypy default: remove a print which causes occasional confusion in the app multithreaded test

arigo noreply at buildbot.pypy.org
Tue Apr 14 10:24:55 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r76788:67a09bbd332a
Date: 2015-04-14 10:24 +0200
http://bitbucket.org/pypy/pypy/changeset/67a09bbd332a/

Log:	remove a print which causes occasional confusion in the app
	multithreaded test

diff --git a/pypy/module/sys/test/test_sysmodule.py b/pypy/module/sys/test/test_sysmodule.py
--- a/pypy/module/sys/test/test_sysmodule.py
+++ b/pypy/module/sys/test/test_sysmodule.py
@@ -642,7 +642,7 @@
 
         thread_id = thread.get_ident()
         def other_thread():
-            print "thread started"
+            #print "thread started"
             lock2.release()
             lock1.acquire()
         lock1 = thread.allocate_lock()


More information about the pypy-commit mailing list