[issue8631] subprocess.Popen.communicate(...) hangs on Windows

2017-06-18 Thread Tim Golden
Tim Golden added the comment: I can't reproduce either on 2.7 or on 3.5 with any of the examples shown. Closing again as not-a-bug. -- resolution: -> not a bug status: open -> closed versions: -Python 2.7, Python 3.4 ___ Python tracker

[issue8631] subprocess.Popen.communicate(...) hangs on Windows

2014-07-02 Thread akira
akira added the comment: ID s.check_output(pyflakes c:\programs\python34\lib\turtle.py) hangs indefinitely, no output It might be unrelated to the issue but \t is a tab; a raw-string literal should be used instead: from subprocess import check_output check_output(rpyflakes

[issue8631] subprocess.Popen.communicate(...) hangs on Windows

2014-07-02 Thread Brian Curtin
Changes by Brian Curtin br...@python.org: -- nosy: -brian.curtin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8631 ___ ___ Python-bugs-list

[issue8631] subprocess.Popen.communicate(...) hangs on Windows

2014-07-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: That has been pointed out to me. I need to repost with the results after correcting the commands (there is still a problem). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8631

[issue8631] subprocess.Popen.communicate(...) hangs on Windows

2014-07-01 Thread Terry J. Reedy
Terry J. Reedy added the comment: There are certainly some problems with subprocess on Windows. Note .../python34 pip pyflakes installs in a second or two. ... pyflakes -h # Windows Command Propmpt WCP import subprocess as s; s.check_output(pyflakes -h) console interpreter CI or Idle, all

[issue8631] subprocess.Popen.communicate(...) hangs on Windows

2014-07-01 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- nosy: +sahutd ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8631 ___ ___ Python-bugs-list mailing

[issue8631] subprocess.Popen.communicate(...) hangs on Windows

2011-04-02 Thread Patrick Gansterer
Patrick Gansterer par...@paroga.com added the comment: I can reproduce this on WinXP with 2.5, 2.7 and 3.2. On my other box (Win7 64bit) the same code works without problems. This problem happens only when I make a subprocess.call() to executables from my msysgit installation (e.g. echo, git).

[issue8631] subprocess.Popen.communicate(...) hangs on Windows

2010-11-21 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: I'm with Tim and Mark - can't reproduce this, so I'm closing the report. If you are able to find another case which can reproduce this, feel free to re-open. -- resolution: - rejected stage: - committed/rejected status: open - closed

[issue8631] subprocess.Popen.communicate(...) hangs on Windows

2010-08-09 Thread Alex Quinn
Alex Quinn aq2...@alexquinn.org added the comment: I am on Windows 7. I realized the echo command I'm piping to belongs to Cygwin. I'll try to make a different example to either support this, or otherwise close the bug. Thanks! -- ___ Python

[issue8631] subprocess.Popen.communicate(...) hangs on Windows

2010-08-08 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I can't reproduce this using Windows Vista. -- nosy: +BreamoreBoy, brian.curtin, tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8631

[issue8631] subprocess.Popen.communicate(...) hangs on Windows

2010-08-08 Thread Tim Golden
Tim Golden m...@timgolden.me.uk added the comment: I can't reproduce on W7. Strangely, though, although my banner suggests that I have exactly the same build as you, I get a \r\n at the end of the communicate bytestream, not a simple \n as you're getting. Do you have any environment variables

[issue8631] subprocess.Popen.communicate(...) hangs on Windows

2010-05-05 Thread Alex Quinn
New submission from Alex Quinn aq2...@alexquinn.org: After using subprocess.Popen(...).communicate(), the session hangs. c:\python31 Python 3.1.2 (r312:79149, Mar 21 2010, 00:41:52) [MSC v.1500 32 bit (Intel)] on win32 Type help, copyright, credits or license for more information. from