##// END OF EJS Templates
Allow run_line_magic to be called from scripts...
Allow run_line_magic to be called from scripts Don't blow up if looking back up the stack trace fails. Reported on rpy2: https://bitbucket.org/lgautier/rpy2/issue/184 /valueerror-call-stack-is-not-deep-enough

File last commit:

r18589:135227ac
r18937:7dc7169c
Show More
SVG.ipynb
47 lines | 977 B | text/plain | TextLexer
In [1]:
from IPython.display import SVG
In [2]:
SVG(data='''
<svg height="100" width="100">
    <circle cx="50" cy="50" r="40" stroke="black" stroke-width="2" fill="red" />
</svg>''')
Out[2]:
No description has been provided for this image