このコードを実行すると、エラーが発生します
import wx
class MyFrame(wx.Frame):
def __init__(self, *args, **kwargs):
wx.Frame.__init__(self, args, kwargs)
self.Show()
app = wx.App()
frame = MyFrame(None)
app.MainLoop()
Traceback (most recent call last):
File "testing.py", line 10, in <module>
frame = MyFrame(None)
File "testing.py", line 6, in __init__
wx.Frame.__init__(self, args, kwargs)
File "C:\Python27\lib\site-packages\wx-2.9.4-msw\wx\_windows.py", line 580, in __init__
_windows_.Frame_swiginit(self,_windows_.new_Frame(*args, **kwargs))
TypeError: in method 'new_Frame', expected argument 1 of type 'wxWindow *'
wxpython で位置引数と名前付き引数に *args と **kwargs を使用することは可能ですか?