With a Python 3 build of Sage, there are three files which exhibit failures 
only (or primarily?) when running the Sage patchbot. This is being tracked 
at https://trac.sagemath.org/ticket/28622. Can anyone help figure out the 
problem and how to fix it? To see the problem, cd to SAGE_ROOT, run Python 
(either 2 or 3) and do this:

>>> import subprocess, os, sys
>>> tee = subprocess.Popen(["tee", 'LOGFILE.log'], stdin=subprocess.PIPE)
>>> os.dup2(tee.stdin.fileno(), sys.stdout.fileno())
>>> os.dup2(tee.stdin.fileno(), sys.stderr.fileno())
>>> os.system('/path/to/sage/sage -t src/sage/repl/attach.py')

What's going on?

-- 
John

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-devel/a8efcc61-69d8-4b1d-9f7b-be7d8855dcf3%40googlegroups.com.

Reply via email to