[issue17077] Fix test_tools hangs

2013-02-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Committed changeset 4be538a058a8. Thank you for the patch. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker __

[issue17077] Fix test_tools hangs

2013-01-30 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka dependencies: +subprocess.Popen.communicate with universal_newlines=True doesn't accept strings on 3.2 stage: -> patch review type: -> behavior ___ Python tracker

[issue17077] Fix test_tools hangs

2013-01-30 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue17077] Fix test_tools hangs

2013-01-30 Thread Jeremy Kloth
Jeremy Kloth added the comment: It hangs on both my Windows buildbot and development machine. The patch is tested and works correctly on Windows. -- ___ Python tracker ___ _

[issue17077] Fix test_tools hangs

2013-01-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: On what platform it hangs? Note that communicate() currently works only with bytes on 3.2 (issue16903). -- ___ Python tracker ___ ___

[issue17077] Fix test_tools hangs

2013-01-29 Thread Jeremy Kloth
New submission from Jeremy Kloth: Attached is a patch to test_tools that gets it back to a run-able state. -- components: Tests files: test_tools.diff keywords: patch messages: 180925 nosy: jkloth, serhiy.storchaka priority: normal severity: normal status: open title: Fix test_tools hang