Internal function. Calling it will raise the exception SystemExit.
(code=0)
| 363 | |
| 364 | |
| 365 | def _exit(code=0): |
| 366 | """Internal function. Calling it will raise the exception SystemExit.""" |
| 367 | try: |
| 368 | code = int(code) |
| 369 | except ValueError: |
| 370 | pass |
| 371 | raise SystemExit(code) |
| 372 | |
| 373 | |
| 374 | _varnum = 0 |
no outgoing calls
no test coverage detected
searching dependent graphs…