MCPcopy Create free account
hub / github.com/ipython/ipython / MyApp

Class MyApp

examples/IPython Kernel/gui/gui-wx.py:80–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78
79
80class MyApp(wx.App):
81 def OnInit(self):
82 frame = MyFrame(None, "Simple wxPython App")
83 self.SetTopWindow(frame)
84
85 print("Print statements go to this stdout window by default.")
86
87 frame.Show(True)
88 return True
89
90
91if __name__ == '__main__':

Callers 1

gui-wx.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected