| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Python315/Lib/test/test_free_threading/ |
Upload File : |
import unittest
from test.support import threading_helper
threading_helper.requires_working_threading(module=True)
class TestRlock(unittest.TestCase):
def test_repr_race(self):
# gh-153292
import _thread
r = _thread.RLock()
def repr_thread():
for _ in range(2000):
repr(r)
def mutate_thread():
for _ in range(2000):
r.acquire()
r.release()
threading_helper.run_concurrently([repr_thread, mutate_thread])
if __name__ == "__main__":
unittest.main()