Dummy implementation of _thread.stack_size().
(size=None)
| 149 | |
| 150 | |
| 151 | def 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 | |
| 158 | def _set_sentinel(): |