1 2 3 4 5 6 7 8 9 10 11
#!/usr/bin/python from gi.repository import Gtk from gi.repository import Scintilla win = Gtk.Window() win.connect("delete-event", Gtk.main_quit) sci = Scintilla.Object() win.add(sci) win.show_all() win.resize(400,300) Gtk.main()