Файловый менеджер - Редактировать - /opt/imh-python/lib/python3.9/site-packages/dill/tests/test_threads.py
Ðазад
#!/usr/bin/env python # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2024-2025 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE import dill dill.settings['recurse'] = True def test_new_thread(): import threading t = threading.Thread() t_ = dill.copy(t) assert t.is_alive() == t_.is_alive() for i in ['daemon','name','ident','native_id']: if hasattr(t, i): assert getattr(t, i) == getattr(t_, i) def test_run_thread(): import threading t = threading.Thread() t.start() t_ = dill.copy(t) assert t.is_alive() == t_.is_alive() for i in ['daemon','name','ident','native_id']: if hasattr(t, i): assert getattr(t, i) == getattr(t_, i) def test_join_thread(): import threading t = threading.Thread() t.start() t.join() t_ = dill.copy(t) assert t.is_alive() == t_.is_alive() for i in ['daemon','name','ident','native_id']: if hasattr(t, i): assert getattr(t, i) == getattr(t_, i) if __name__ == '__main__': test_new_thread() test_run_thread() test_join_thread()
| ver. 1.1 | |
.
| PHP 8.3.30 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка