On macOS, launching the app crashes immediately:
File "modules/core.py", line 180, in limit_resources
ValueError: current limit exceeds maximum limit
The macOS kernel rejects setrlimit(RLIMIT_DATA, ...) with EINVAL for the values used here, which CPython surfaces as the misleading ValueError above. See python/cpython#142317.
PR to follow.
On macOS, launching the app crashes immediately:
The macOS kernel rejects
setrlimit(RLIMIT_DATA, ...)withEINVALfor the values used here, which CPython surfaces as the misleadingValueErrorabove. See python/cpython#142317.PR to follow.