final tweaks for embedded

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26564 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-04-01 19:36:17 +00:00
parent c393c74021
commit b8a4283421
2 changed files with 2 additions and 1 deletions

View File

@ -205,6 +205,8 @@ sys.stdin = sys.stderr = output\n\
char* python_code2 = "\
import sys\n\
sys.path.append('.')\n\
import embedded_sample\n\
\n\
def makeWindow(parent):\n\

View File

@ -4,7 +4,6 @@ from wx.py import shell, version
class MyPanel(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent, -1)
print parent
text = wx.StaticText(self, -1,
"Everything on this side of the splitter comes from Python.")