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 akira
Recipients Alex Quinn, BreamoreBoy, Saimadhav.Heblikar, akira, brian.curtin, paroga, steve.dower, terry.reedy, tim.golden, zach.ware
Date 2014-07-02.22:09:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404338973.3.0.641518498357.issue8631@psf.upfronthosting.co.za>
In-reply-to
Content
> 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")
History
Date User Action Args
2014-07-02 22:09:33akirasetrecipients: + akira, terry.reedy, tim.golden, brian.curtin, Alex Quinn, BreamoreBoy, paroga, zach.ware, steve.dower, Saimadhav.Heblikar
2014-07-02 22:09:33akirasetmessageid: <1404338973.3.0.641518498357.issue8631@psf.upfronthosting.co.za>
2014-07-02 22:09:33akiralinkissue8631 messages
2014-07-02 22:09:33akiracreate