icon: package
sys.versionThe version of pkpy.
sys.platformMay be one of:
win32linuxdarwinandroidiosemscriptensys.argvThe command line arguments. Set by py_sys_setargv.
sys.setrecursionlimit(limit: int)Set the maximum depth of the Python interpreter stack to limit. This limit prevents infinite recursion from causing an overflow of the C stack and crashing the interpreter.
sys.getrecursionlimit() -> intReturn the current value of the recursion limit.