##// END OF EJS Templates
Merge pull request #1414 from minrk/var_expand...
Merge pull request #1414 from minrk/var_expand ignore errors in shell.var_expand If an error is raised in the formatter, leave it untransformed. This means that var_expand("$foo") will return "$foo" if foo is undefined, but more importantly it will not raise when var_expand is used on literal code that doesn't expect to be expanded (e.g. %prun arguments). closes #1412

File last commit:

r3880:e7df0ac1
r6142:44802999 merge
Show More
display.py
27 lines | 668 B | text/x-python | PythonLexer
"""Code that shows off the IPython display logic.
"""
from IPython.lib.latextools import latex_to_png
from IPython.core.display import (
display, display_pretty, display_html,
display_svg, display_json, display_png
)
class Circle(object):
def __init__(self, radius):
self.radius = radius
def _repr_pretty_(self, p, cycle):
p.text(u"\u25CB")
def _repr_html_(self):
return "<h1>Cirle: radius=%s</h1>" % self.radius
def _repr_svg_(self):
return """<svg>
<circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red"/>
</svg>"""
def _repr_png_(self):
return latex_to_png('$\circle$')