我们从Python开源项目中,提取了以下12个代码示例,用于说明如何使用dummy_thread.stack_size()。
def stack_size(size=None): """Dummy implementation of thread.stack_size().""" if size is not None: raise error("setting thread stack size not supported") return 0