MCPcopy Index your code
hub / github.com/python/cpython / _exit

Function _exit

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

Internal function. Calling it will raise the exception SystemExit.

(code=0)

Source from the content-addressed store, hash-verified

363
364
365def _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

Callers 1

_spawnvefFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…