Here are the examples of the python api bokeh.util.compiler.Inline taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Examples
3
View Source File : test_compiler.py
License : MIT License
Project Creator : rthorst
License : MIT License
Project Creator : rthorst
def test_Inline():
obj = buc.Inline("code")
assert obj.code == "code"
assert obj.file == None
obj = buc.Inline("code", "file")
assert obj.code == "code"
assert obj.file == "file"
def test_CoffeeScript():