##// END OF EJS Templates
add IPython.start_ipython...
add IPython.start_ipython A public API for starting a real (non-embedded) IPython instance. should avoid API breakage in the future due to simple module renames as has just happened with the removal of frontend

File last commit:

r11086:c137395d
r11173:786cc9b8
Show More
python_armor.tpl
31 lines | 732 B | application/vnd.groove-tool-template | SmartyLexer
{%- extends 'python.tpl' -%}
{#% block any_cell %}
==============================
=======start {{cell.type}}=========
{{ super() }}
======= end {{cell.type}} =========
=============================={% endblock any_cell %#}
{% block markdowncell %}---- Start MD ----{{ super() }}
---- End MD ----
{% endblock markdowncell %}
{% block codecell %}---- Start Code ----{{ super() }}
---- End Code ----
{% endblock codecell %}
{% block headingcell scoped %}---- Start heading ----{{ super() }}
---- End heading ----
{% endblock headingcell %}
{% block rawcell scoped %}---- Start Raw ----
{{ super() }}
---- End Raw ----{% endblock rawcell %}
{% block unknowncell scoped %}
unknown type {{cell.type}}
{% endblock unknowncell %}