]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/tests/test_appleevents.py
move wxPython to new trunk
[wxWidgets.git] / wxPython / tests / test_appleevents.py
diff --git a/wxPython/tests/test_appleevents.py b/wxPython/tests/test_appleevents.py
deleted file mode 100644 (file)
index b13c08e..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-import sys, os
-import wx
-
-class MyApp(wx.App):
-    def OnInit(self):
-        f = wx.Frame(None, title="Hello World")
-        f.Show()
-        return True
-    
-    def MacOpenFile(self, filename):
-        # code to load filename goes here.
-        wx.MessageBox(
-            "You requested to open this file:\n\"%s\"" % filename)
-
-app = MyApp()
-app.MainLoop()
-