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(r"pyflakes c:\programs\python34\lib\turtle.py")

----------
nosy: +akira

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue8631>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to