Author: Manuel Jacob <[email protected]>
Branch: py3k
Changeset: r80754:27eb9104567c
Date: 2015-11-15 10:44 +0100
http://bitbucket.org/pypy/pypy/changeset/27eb9104567c/

Log:    2to3

diff --git a/pypy/module/thread/test/test_lock.py 
b/pypy/module/thread/test/test_lock.py
--- a/pypy/module/thread/test/test_lock.py
+++ b/pypy/module/thread/test/test_lock.py
@@ -182,7 +182,7 @@
             self.sig_recvd = True
         old_handler = signal.signal(signal.SIGUSR1, my_handler)
         try:
-            ready = thread.allocate_lock()
+            ready = _thread.allocate_lock()
             ready.acquire()
             def other_thread():
                 # Acquire the lock in a non-main thread, so this test works for
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to