##// END OF EJS Templates
Fix rmagic for cells ending in comment....
Fix rmagic for cells ending in comment. Closes gh-5579 Simplest possible fix, because rmagic is being moved out to rpy2. But it's not released there yet, so it's still worth fixing this.

File last commit:

r6183:26a70f4b
r16251:6e3bf412
Show More
daft_extension.py
12 lines | 285 B | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
"""
Useless IPython extension to test installing and loading extensions.
"""
some_vars = {'arq': 185}
def load_ipython_extension(ip):
# set up simplified quantity input
ip.push(some_vars)
def unload_ipython_extension(ip):
ip.drop_by_id(some_vars)