(v: str, /)
| 344 | kwargs = {} |
| 345 | |
| 346 | def __int_nothrow(v: str, /) -> Optional[int]: |
| 347 | try: |
| 348 | return int(v, 0) |
| 349 | except ValueError: |
| 350 | return None |
| 351 | |
| 352 | # qdb init args are independent and may include any combination of: rr enable, init hook and script |
| 353 | arg_init_hook = [] |