| 227 | return True |
| 228 | |
| 229 | class ReturnValueEntry(_BaseSimpleValueEntry): |
| 230 | _preamble_pattern = re.compile( |
| 231 | r"""^Return value$""" |
| 232 | ) |
| 233 | |
| 234 | class ExceptionValueEntry(_BaseSimpleValueEntry): |
| 235 | _preamble_pattern = re.compile( |
no outgoing calls