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