##// END OF EJS Templates
remove mktemp usage...
remove mktemp usage mktemp is insecure, by the time the generated filename is used someone else might have modified it.

File last commit:

r14881:a678d010
r15372:5ce8451d
Show More
python.tpl
17 lines | 443 B | application/vnd.groove-tool-template | SmartyLexer
{%- extends 'null.tpl' -%}
{% block in_prompt %}
# In[{{ cell.prompt_number if cell.prompt_number else ' ' }}]:
{% endblock in_prompt %}
{% block input %}
{{ cell.input | ipython2python }}
{% endblock input %}
{% block markdowncell scoped %}
{{ cell.source | comment_lines }}
{% endblock markdowncell %}
{% block headingcell scoped %}
{{ '#' * cell.level }}{{ cell.source | replace('\n', ' ') | comment_lines }}
{% endblock headingcell %}