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 pitrou
Recipients Arfrever, David.Edelsohn, eryksun, marczellm, ncoghlan, pitrou, python-dev, skrah, tim.golden, zach.ware
Date 2014-05-11.14:04:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1399817072.9.0.220633905549.issue21425@psf.upfronthosting.co.za>
In-reply-to
Content
Judging by the faulthandler traceback in the PowerLinux build:

Timeout (1:00:00)!
Thread 0x0000008074e46670 (most recent call first):
  File "/home/shager/cpython-buildarea/3.4.edelsohn-powerlinux-ppc64/build/Lib/test/test_cmd_line_script.py", line 192 in interactive_python
  File "/home/shager/cpython-buildarea/3.4.edelsohn-powerlinux-ppc64/build/Lib/contextlib.py", line 59 in __enter__
  File "/home/shager/cpython-buildarea/3.4.edelsohn-powerlinux-ppc64/build/Lib/test/test_cmd_line_script.py", line 205 in check_repl_stderr_flush
  File "/home/shager/cpython-buildarea/3.4.edelsohn-powerlinux-ppc64/build/Lib/test/test_cmd_line_script.py", line 220 in test_repl_stderr_flush
[snip]

... the test is actually stuck trying to read the interactive prompt from stderr:

            # Drain stderr until prompt
            while True:
                data = stderr.read(4)
                if data == b">>> ":
                    break
                stderr.readline()            <-- HERE
History
Date User Action Args
2014-05-11 14:04:32pitrousetrecipients: + pitrou, ncoghlan, tim.golden, Arfrever, skrah, python-dev, zach.ware, eryksun, David.Edelsohn, marczellm
2014-05-11 14:04:32pitrousetmessageid: <1399817072.9.0.220633905549.issue21425@psf.upfronthosting.co.za>
2014-05-11 14:04:32pitroulinkissue21425 messages
2014-05-11 14:04:32pitroucreate