我们从Python开源项目中,提取了以下22个代码示例,用于说明如何使用_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