X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ec873c943d71f0d5f13e3398557071448cda6c23..a4027e74873007e3430af3bd77019bcab76f6c04:/wxPython/samples/embedded/embedded_sample.py diff --git a/wxPython/samples/embedded/embedded_sample.py b/wxPython/samples/embedded/embedded_sample.py deleted file mode 100644 index 56e46926d8..0000000000 --- a/wxPython/samples/embedded/embedded_sample.py +++ /dev/null @@ -1,20 +0,0 @@ -import wx -from wx.py import shell, version - -class MyPanel(wx.Panel): - def __init__(self, parent): - wx.Panel.__init__(self, parent, -1, style=wx.SUNKEN_BORDER) - - text = wx.StaticText(self, -1, - "Everything on this side of the splitter comes from Python.") - - intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % version.VERSION - pycrust = shell.Shell(self, -1, introText=intro) - #pycrust = wx.TextCtrl(self, -1, intro) - - sizer = wx.BoxSizer(wx.VERTICAL) - sizer.Add(text, 0, wx.EXPAND|wx.ALL, 10) - sizer.Add(pycrust, 1, wx.EXPAND|wx.BOTTOM|wx.LEFT|wx.RIGHT, 10) - - self.SetSizer(sizer) -