MCPcopy Index your code
hub / github.com/RustPython/RustPython / _exit

Function _exit

Lib/tkinter/__init__.py:359–365  ·  view source on GitHub ↗

Internal function. Calling it will raise the exception SystemExit.

(code=0)

Source from the content-addressed store, hash-verified

357
358
359def _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

Callers 1

_spawnvefFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected