New submission from Alexander Belopolsky: $ python3 Python 3.4.3 (default, Mar 2 2015, 11:08:35) [GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> import subprocess >>> subprocess.call([sys.executable, '-c', "import sys;sys.exit(512)"]) 0 >>> subprocess.call([sys.executable, '-c', "import sys;sys.exit(256)"]) 0
See also #14376. ---------- components: Interpreter Core messages: 241946 nosy: belopolsky priority: normal severity: normal status: open title: sys.exit(code) returns "success" to the OS for some values of code type: behavior versions: Python 3.5 _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue24052> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com