##// END OF EJS Templates
Simplify StreamCapturer for subprocess testing...
Simplify StreamCapturer for subprocess testing Rather than using a transient pipe for each subprocess started, the StreamCapturer now makes a single pipe, and subprocesses redirect their output to it. So long as this works on Windows (I've done brief testing, and os.pipe() seems to be functional), this will hopefully make this much more robust. The recent failures in ShiningPanda on IPython.parallel have been caused by StreamCapturer.

File last commit:

r11717:00cf7e3c
r13405:4ad2c011
Show More
layout.html
23 lines | 667 B | text/html | HtmlLexer
Brian Granger
Cleanup of docs....
r2275 {% extends "!layout.html" %}
{% block rootrellink %}
Paul Ivanov
there's no place like home
r11717 <li><a href="http://ipython.org">home</a>|&nbsp;</li>
Brian Granger
Cleanup of docs....
r2275 <li><a href="{{ pathto('search') }}">search</a>|&nbsp;</li>
Brian Granger
Major work on the documentation....
r2277 <li><a href="{{ pathto('index') }}">documentation </a> &raquo;</li>
Brian Granger
Cleanup of docs....
r2275 {% endblock %}
{% block relbar1 %}
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
Jessica B. Hamrick
Change logo link to ipython.org; fixes #1366
r11716 <a href="http://ipython.org/"><img src="{{
Brian Granger
Cleanup of docs....
r2275 pathto("_static/logo.png", 1) }}" border="0" alt="IPython Documentation"/></a>
</div>
{{ super() }}
{% endblock %}
{# put the sidebar before the body #}
{% block sidebar1 %}{{ sidebar() }}{% endblock %}
{% block sidebar2 %}{% endblock %}