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 terry.reedy
Recipients Weird, amaury.forgeotdarc, benjamin.peterson, borisompol, chn, denversc, eryksun, georg.brandl, jmfauth, kevinwatters, terry.reedy, tlesher, trentm, twhitema
Date 2019-03-16.07:02:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1552719757.28.0.576719270683.issue3905@roundup.psfhosted.org>
In-reply-to
Content
I reran test with IDLE started 4 ways:
I am closing this as out of date because the problem seems to have been fixed elsewise.

3.8.0a2+ 32 bit debug python, built today, opened from python icon, then idle started with 'import idlelib.idle'
3.8.0a2 64 bit installed, directly from IDLE icon
3.7.2 python -m idlelib
3.7.2 pythonw -m idlelib

#  and it ran correctly all 4 times.
>>> import subprocess
>>> p = subprocess.Popen(["python", "-c", "print(32)"], stdin=None,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
>>> p.communicate()
(b'32\r\n', b'')

Anyone with the same or similar failure on current Python (now 3.7, 3.8) should open a new issue and give careful details -- release or build, system, startup procedure, and a reproducing example only using stdlib modules (no PythonWin).
History
Date User Action Args
2019-03-16 07:02:37terry.reedysetrecipients: + terry.reedy, georg.brandl, amaury.forgeotdarc, kevinwatters, tlesher, benjamin.peterson, trentm, jmfauth, twhitema, Weird, denversc, chn, eryksun, borisompol
2019-03-16 07:02:37terry.reedysetmessageid: <1552719757.28.0.576719270683.issue3905@roundup.psfhosted.org>
2019-03-16 07:02:37terry.reedylinkissue3905 messages
2019-03-16 07:02:36terry.reedycreate