Skip to content

Commit

Permalink
Merge branch '3.13' of https://github.com/python/cpython into 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Yhg1s committed Dec 3, 2024
2 parents fd81351 + 0b266aa commit b90161f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Lib/test/test_threading.py
Original file line number Diff line number Diff line change
Expand Up @@ -1192,11 +1192,12 @@ def f():
resource.setrlimit(resource.RLIMIT_NPROC, (0, hard))
try:
_thread.start_new_thread(f, ())
handle = _thread.start_joinable_thread(f)
except RuntimeError:
print('ok')
else:
print('!skip!')
handle.join()
"""
_, out, err = assert_python_ok("-u", "-c", code)
out = out.strip()
Expand Down

0 comments on commit b90161f

Please sign in to comment.