The interactive file manager requires Javascript. Please enable it or use sftp or scp.
You may still browse the files here.
Download Latest Version
wxPython-pdb-4.0.0a3-py36-win_amd64.zip (63.4 MB)
Email in envelope
Get an email when there's a new version of wxPython
Recent Changes for wxPython ===================================================================== 3.0.2.0 ------- * 28-Nov-2014 Fixed wxPython bug on OSX that was preventing the wx.App's virtual methods related to handling App Events, like open-files or reopen-app, from being handled correctly. NOTE: It appears that wxPython applications on OSX will now always be getting an initial Apple Event(s) sent to `MacOpenFiles` coresponding to the name of the script and args on the python command-line. Added patch #15142 which adds support for building with and using GTK3 as the wx platform. Thanks kosenko! Fixed the OSX Carbon build to actually use Carbon. (Because of a change in defaults it was actually building the Cocoa build instead.) Pythonized DataViewCtrl.HitTest. It now takes just the Point parameter and returns the DataViewItem and DataViewColumn objects. If there is no item at that point then item will evaluate to False, (or you can use its IsOk method.) For example:: item, col = ctrl.HitTest(point) if item: doSomething(item, col)