mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
8 lines
157 B
Python
8 lines
157 B
Python
from direct.stdpy import threading
|
|
import pytest
|
|
|
|
|
|
def test_threading_error():
|
|
with pytest.raises(threading.ThreadError):
|
|
threading.stack_size()
|