| 1 | #!/usr/bin/env python3 |
| 2 | # Lazy imports: traceback and threading are deferred to avoid paying their |
| 3 | # import cost (~4ms and ~2.5ms respectively) on early-exit paths (CASE 0-4). |
| 4 | # They are imported just-in-time in the code that actually needs them. |