daidai_up
Results
1
issues of
daidai_up
* windows LTSC 2019 * Python 3.7.9 * wxPython 4.2.0 msw (phoenix) wxWidgets 3.2.0 ```python import wx class Frame(wx.Frame): def __init__(self, parent): wx.Frame.__init__(self, parent) panel = wx.Panel(self) self.Bind(wx.EVT_MENU, self.OnMenu) def...