Internal function. Calling it will raise the exception SystemExit.
(code=0)
| 353 | |
| 354 | |
| 355 | def _exit(code=0): |
| 356 | """Internal function. Calling it will raise the exception SystemExit.""" |
| 357 | try: |
| 358 | code = int(code) |
| 359 | except ValueError: |
| 360 | pass |
| 361 | raise SystemExit(code) |
| 362 | |
| 363 | |
| 364 | _varnum = 0 |