This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author belopolsky
Recipients belopolsky
Date 2015-04-24.15:29:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429889353.58.0.941477823236.issue24052@psf.upfronthosting.co.za>
In-reply-to
Content
$ 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.
History
Date User Action Args
2015-04-24 15:29:13belopolskysetrecipients: + belopolsky
2015-04-24 15:29:13belopolskysetmessageid: <1429889353.58.0.941477823236.issue24052@psf.upfronthosting.co.za>
2015-04-24 15:29:13belopolskylinkissue24052 messages
2015-04-24 15:29:13belopolskycreate