# Bryan Schumaker (8/22/2010) import ocarina gtk = ocarina.gtk info = gtk.VBox() info.show() hsep = gtk.HSeparator() hsep.show() info.pack_start(hsep) def init(): global info label = gtk.Label("Test label") label.show() info.pack_start(label) def get_info(): global info return info