Message 381170 - Python tracker

Message381170

Author Drekin
Recipients Drekin, iritkatriel, r.david.murray
Date 2020-11-16.22:04:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1605564278.08.0.959329445779.issue18838@roundup.psfhosted.org>
In-reply-to
Content
So far I could reproduce the issue on Python 3.7, Windows Vista 64bit. I'll try with newer versions.

The output I got:
>>> from subprocess import *
>>> Popen("py -i foo.py", stdin=PIPE, stdout=PIPE, stderr=PIPE).communicate()
(b'', b'>>> Traceback (most recent call last):\r\n  File "foo.py", line 2, in <module>\r\n    1/0\r\nZeroDivisionError: division by zero\r\n\r\n')
History
Date User Action Args
2020-11-16 22:04:38Drekinsetrecipients: + Drekin, r.david.murray, iritkatriel
2020-11-16 22:04:38Drekinsetmessageid: <1605564278.08.0.959329445779.issue18838@roundup.psfhosted.org>
2020-11-16 22:04:38Drekinlinkissue18838 messages
2020-11-16 22:04:37Drekincreate