MCPcopy Index your code
hub / github.com/RustPython/RustPython / stack_size

Function stack_size

Lib/_dummy_thread.py:151–155  ·  view source on GitHub ↗

Dummy implementation of _thread.stack_size().

(size=None)

Source from the content-addressed store, hash-verified

149
150
151def stack_size(size=None):
152 """Dummy implementation of _thread.stack_size()."""
153 if size is not None:
154 raise error("setting thread stack size not supported")
155 return 0
156
157
158def _set_sentinel():

Callers

nothing calls this directly

Calls 1

errorFunction · 0.70

Tested by

no test coverage detected