##// END OF EJS Templates
Using igrid with wxPyhon 2.6 and -wthread should work now....
Using igrid with wxPyhon 2.6 and -wthread should work now. igrid.display() simply tries to create a frame without an application. Only if this fails an application is created.

File last commit:

r0:6f629fcc
r574:fd8c3c21
Show More
nbexample.py
11 lines | 268 B | text/x-python | PythonLexer
from notebook.markup import rest
rest.title('This is a Python Notebook')
rest.heading(1,'A first-level heading')
rest.text("""\
Some plain text, without any special formatting.
Below, we define a simple function to add two numbers.""")
def add(x,y):
return x+y