##// END OF EJS Templates
Don't pass IPython-specific args to non-IPython kernels...
Don't pass IPython-specific args to non-IPython kernels add a few FIXME notes that the IPython-kernel special treatment will probably want to be removed in the Jupyter explosion.

File last commit:

r18596:2d590459
r18933:5b6c286c
Show More
python.tpl
17 lines | 370 B | application/vnd.groove-tool-template | SmartyLexer
{%- extends 'null.tpl' -%}
{% block header %}
# coding: utf-8
{% endblock header %}
{% block in_prompt %}
# In[{{ cell.execution_count if cell.execution_count else ' ' }}]:
{% endblock in_prompt %}
{% block input %}
{{ cell.source | ipython2python }}
{% endblock input %}
{% block markdowncell scoped %}
{{ cell.source | comment_lines }}
{% endblock markdowncell %}