X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cae922234a2f58305c3c10d08ec86a29f419854b..d0ee33f5c6908b4ac5e1364381f0ef00942e3936:/wxPython/docs/CHANGES.html diff --git a/wxPython/docs/CHANGES.html b/wxPython/docs/CHANGES.html index 2c483d7add..653b3bf064 100644 --- a/wxPython/docs/CHANGES.html +++ b/wxPython/docs/CHANGES.html @@ -3,7 +3,7 @@
- +wx.ListCtrl: patch #1210352, fixes editing in generic wx.ListCtrl with +wx.LC_EDIT_LABELS.
+Applied patch #208286, MediaCtrl DirectShow rewrite.
+DocView patches from Morgan Hua: bug fixes, and additional SVN +commands, also added a default template that uses the text editor for +any unknown file type.
+wxMSW: Use the system IDC_HAND cursor for wx.CURSOR_HAND and only fallback +to the strange wxWidgets version if the system one is not available.
+wx.grid.Grid: Merge the cell size attribute the same way that other +attributes are merged, e.g., if it is already set to a non-default +value in the current GridCellAttr object then don't merge from the +other.
+wx.lib.evtmgr: Fixed to use wx._core._wxPyDeadObject
+wx.lib.gridmovers: Don't scroll when the mouse is dragged outside of +the grid, unless the mouse is kept in motion.
+wxMSW: Applied patch #1213290 incorrect logic in +wx.TopLevelWindow.ShowFullScreen.
+Applied patch #1213066 correct device names for Joystick in Linux.
+wxGTK: Applied patch #1207162 wx.TextCtrl.SetStyle fix for overlapping +calls.
+wx.FileConfig: fixed DeleteEntry to set the dirty flag properly so the +change will get written at the next flush.
+Added wx.BrushFromBitmap to create a stippled brush in a single step. +Also added missing brysh style flags: wx.STIPPLE_MASK +wx.STIPPLE_MASK_OPAQUE.
+wxMSW: Fix for default control colours when the system text fg colour +is not black.
+wxGTK: Patch #1171754, It is now possible to have a menu item that +both has an icon and is a submenu.
+wxMSW: Patch #1197009, better refreshes when windows are moved and +resized.
+wxMSW: Patch #1197468. Keeps track of pending size/position changes +in case there is more than one adjustment for a window in a single +DeferWindowPos set, then the pending values can be used for defaults +instead of current values.
+Fixed the typemap that converts a Python list of strings to a +wxArrayString so it uses the wxPython default encoding.
+Several docstrings added and updated. Lots more to go.
+wxMac: Strings added to the clipboard or used in DnD no longer have an +extra null character at the end.
+Added wx.GetXDisplay that returns a raw swigified pointer for the X11 +Display, or None for the non-X11 platforms.
+wxMenu: Don't send an event when selecting an already selected radio +item.
+Added wx.LaunchDefaultBrowser.
+wxMSW: Fixed erroneous selection of content in wx.ComboBox when within +a wx.StaticBox.
+wxMSW: Fixed alpha blitting to take into account source position.
+Ensure that Python is still in an initialized state before doing any +locking or unlocking in wxPyBeginBlockThreads and wxPyEndBlockThreads +as these can be triggered after Python has been finalized in embedding +situations.
+Added alternate constructors for wx.Font: wx.FontFromPixelSize, +wx.FFont, wx.FFontFromPixelSize. See the docstrings or new api docs +for details.
+Added wx.lib.hyperlink from Andrea Gavana. It is a control like +static text that acts like a hyper-link, launching the system's +default browser in response to the clicks.
+Added an optional parameter to wxversion.select that allows you to +specify that the extra components specified in the version string are +required. For example, if you ask for "2.6-unicode" but only the ansi +version is installed then by default the ansi version will be selected +as it considered close enough since the version numbers match. If you +want to force the options to be required then you can just add a True +parameter, like this:
++import wxversion +wxversion.select("2.6-unicode", True) +import wx ++
Tweaked wx.lib.buttons such that flat buttons (e.g. have no bevel and +a wx.BORDER_NONE style flag) paint themed backgrounds if there are +transparent areas and the parent is displaying a theme.
+wxMSW: Fix for wrong sash colour of wx.SplitterWindow in the silver +theme on XP.
+Added a wx.xrc.XmlResourceHandler for the Ticker class. See +wx/lib/ticker_xrc.py
+wxSTC: Fixed CmdKeyAssign key bindings for Ctrl-Backspace.
+wxMSW: Fixed a bug in wx.TextCtrl where all the lines were being used +to calculate the best size, instead of using a reasonable limit.
+XRCed: Use wx.GetDefaultPyEncoding/wx.SetDefaultPyEncoding for +changing active encoding. Fixed pasting siblings (Ctrl key pressed +while pasting).
+wx.lib.filebrowsebutton: Bug fix from Chad Netzer for when +self.history is None.
+wx.ogl: Patch from Davide Salomoni that adds an optional point +parameter to LineShape.InsertLineControlPoint allowing one to +optionally specify where the new control point has to be drawn.
+wxMSW: setting foreground colour for wx.CheckBox now works when using +XP themes.
+More updates to the docview library modules and sample apps from the +ActiveGrid folks. Their sample IDE is now able to integrate with +Subversion.
+wx.grid.Grid: Ensure that the grid gets the focus when it is +left-clicked. Note that if you have custom widgets that handle the +EVT_LEFT_DOWN event but do not call event.Skip() then you will +probably want to add a call to self.SetFocus in the event handler.
+wxGTK: Add wxSTAY_ON_TOP support [Patch 1206023]
+wx.TreeCtrl: wx.EVT_TREE_ITEM_MENU event made consistent on all +platforms. The location of the click or the item is included in the +event as well.
+wxGTK: Setting background colour of a window now only affects the +window itself, not the borders, scrollbars, etc. (Bug #1204069)
+Print framework: Add more paper sizes and code to fallback to an +explicit paper size if a known paper size is not found for the +printer.
+wxMac: Applied patch for bug #1206181 Option-key decodes are wrong, +also applied patch for bug #1205691 Modified Fn keys don't work.
+wx.Image: Fixed to preserve alpha channel in Rotate90 method.
+wxMSW: Fixed incorrect background colour on wx.CheckListBox.
+wxMSW: Fixed drawing of owner drawn buttons with multiline labels
+Removed a bunch of unnecessary files, and removed or replaced images +that we're not sure of their origin or license.
+The default DoGetBestSize is updated to not always return the current +size if the window has no sizer, children, or minsize set. Instead +the current size is set as the minsize. This solves the occasional +problem where a sizer may cause a childless panel to grow but never +shrink.
+wxMSW: When converting a wx.Icon to a bitmap check if the icon has an +alpha channel and set the bitmap to use it.
+Fixed the wrong class name used in wx.PyScrolledWindow's call to +_setCallbackInfo.
+wxMSW: patch #1207202, Fixes GDI leak when using stock cursors.
+wx.calendar.CalendarCtrl: Patch #1207531, Keeps the CalendarCtrl wide +enough even when the weekday names for the locale are shorter than +usual.
+Made GridCellNumberEditor.StartingKey also insert the typed char when +there is a range of allowed values (so a wx.SpinCtrl is used instead +of a wx.TextCtrl.)
+wxMSW: Fixed wx.TransientPopupWindow (and therefore wx.TipWindow) to +auto-dismiss when the mouse is clicked outside of the popup like it is +supposed to.
+wxMSW: Fixed bug #1167891 wx.Notebook display problem with wx.NB_MULTILINE.
+wxMSW: Fixed bad cliping of hidden windows inside of wx.StaticBox.
+wxGTK: The configure flags for selecting GTK+ 1.2.x or 2.x has +changed slightly. It is now --with-gtk[=VERSION] where VERSION is +either '1', '2' or 'any'. The default is '2'.
+wx.stc.StyledTextCtrl: Added the following methods for alternate ways +to set and fetch text from the document buffer. They work similarly +to the existing methods of the same name, except that they don't go +through the same string/unicode <--> wxString conversions. The "Raw" +methods will do no conversions at all and in a unicode build of +wxPython the strings will be in the utf-8 encoding and in an ansi +build no assumption is made about the encoding. The "UTF8" functions +will attempt to always get/set utf-8 text, which it will always be +able to do in a unicode build, and in an ansi build it will depend on +the content of the utf-8 used being compatible with the current +encoding, (you'll get an exception otherwise.)
++++
++ + ++ + + AddTextRaw +AddTextUTF8 ++ InsertTextRaw +InsertTextUTF8 ++ GetCurLineRaw +GetCurLineUTF8 ++ GetLineRaw +GetLineUTF8 ++ GetSelectedTextRaw +GetSelectedTextUTF8 ++ GetTextRangeRaw +GetTextRangeUTF8 ++ SetTextRaw +SetTextUTF8 ++ GetTextRaw +GetTextUTF8 ++ + AppendTextRaw +AppendTextUTF8 +
wx.stc.StyledTextCtrl: Added the StyleSetFontEncoding(style, enc) +method that allows you to set the encoding to be used by the font for +a particular style.
+wxMac: Fixed wx.ComboBox to forward the EVT_CHAR, EVT_KEY_DOWN, +EVT_KEY_UP and EVT_TEXT events from its embedded text control.
+wxMac: Corrected refresh bugs in wxGrid.
+wxMSW: Fixed bug #1022383, 'several ComboBoxes appear selected'
wx.grid.Grid: Fixed bug #1163384. Moved the code that handles activating the cell editors to a EVT_CHAR event handler. This is done @@ -34,11 +256,11 @@ end of dragging and not after each CHANGING event (modified patch #1076226)
wx.glcanvas.GLCanvas: applied patch fixing problems with X server crash when using nVidia cards (patch 1155132)
-Added the ActiveGrid IDE as a sample application.
wx.Sizer Add, Insert, and Prepend functions now return a reference to the wx.SizerItem that was added to the sizer, and the wx.SizerItem has a GetRect accessor to give the position of the item on the parent window.
@@ -87,8 +312,8 @@ wx.Window, wx.Sizer or position index. consecutive (there may be intervening controls). Without this fix, an out-of-sync assert is generated when clicking on a radio button and then calling GetValue(). -Several patches applied, such as #1111174, #1110252 and others, that make the generic wx.TreeCtrl (used on wxGTK and wxMac) be more conistent with the wxMSW native wx.TreeCtrl.
-Added Resize, SetRGBRect, Size, and GetOrFindMaskColour methods to wx.Image.
Added wx.Rect.IsEmpty
-wxMac focus and border refreshes corrected.
Updated internal PNG library.
wxMac fix for metal appearance on wx.ToolBar.
@@ -331,7 +559,7 @@ button will be used. For example, the following will result in a button with "Cancel" as the label and if run on wxGTK2 then there will also be an image of a red X:-b = wx.Button(parent, wx.ID_CANCEL) +b = wx.Button(parent, wx.ID_CANCEL)
Added wx.lib.ticker.Ticker class from Chris Mellon.
Fix some incorrect clipping regions in wxSTC on wxGTK.
@@ -410,7 +638,7 @@ holding down the mouse button.wxGTK: Enable key based navigation through notebook tabs as in the native control with Left and right keys. Support for vetoing.
FloatCanvas updates from Chris Barker
-Restructured the installer packages slightly to help facilitate having multiple versions of wxPython installed at the same time. See the Migrarion Guide for more information.
-wxPython on OSX can now be built in Unicode mode, can support multiple version installs, and comes with an uninstaller script.
wx.ADJUST_MINSIZE is now the default behaviour for window items in sizers. This means that the item's GetMinSize and/or GetBestSize will be called when calculating layout and the return value from that will @@ -586,8 +820,11 @@ in the PyShell:
wxGTK: Applied wxNO_BORDER patch (#1098374) for text control and combo box.
(See also the MigrationGuide file for details about some of the big changes that have happened in this release and how you should adapt your code.)
@@ -613,7 +850,7 @@ Python Global Interpreter Lock to try and prevent deadlocks that can happen when there are nested attempts to aquire the GIL.The RPMs will now install menu items on Mandrake Linux in Applications/Development/Tools for PyCrust, XRCed, etc. The RPMs are -also installing icons and *.desktop items in the generic KDE and +also installing icons and *.desktop items in the generic KDE and GNOME locations, but I don't know yet if they are resulting in menu items on non-Mandrake systems. (It didn't automatically do it on my RH-9 build box but I didn't chase it very far...) If you have ideas @@ -668,8 +905,11 @@ migrating away from using activexwrapper as well. Please see the MigrationGuide for more details on using the new module.
Floats are allowed again as function parameters where ints are expected.
Use wxSTC in the demo for displaying the soucre code of the samples.
Lots of bug fixes and such from the wxWindows folks.
Added wxPython.lib.newevent from Miki Tebeka. Its usage is @@ -678,12 +918,15 @@ demonstrated in the Threads sample in the demo.
Added wxMaskedNumCtrl.
Added Chris Barker's FloatCanvas.
Added wxScrolledPanel from Will Sadkin
Added SetShape method to top level windows (e.g. wxFrame.)
Changed wxSWIG to not generate Python code using apply, (since it will -be deprecated in the future) wxSWIG will use spam(*args, **kw) syntax +be deprecated in the future) wxSWIG will use spam(*args, **kw) syntax instead. Also changed the generated __repr__ methods to be a bit more informative.
Made the version number information more robust and uh, informative. @@ -691,7 +934,7 @@ Also added asserts to check that the major.minor versions of wxPython and wxWindows match.
Added the new wx "renamer" package that will dynamically import from the wxPython package and rename wxFooBar --> FooBar. That means that -people can do imports without "import *" and can use names like +people can do imports without "import *" and can use names like wx.Frame instead of wx.wxFrame. This is phase 1 of a full transition to the new namespace.
Updated Scintilla to 1.52. I also changed it to use wxListCtrl @@ -730,8 +973,11 @@ release,) SetItemMinSize can now take a wxSize (or 2-tuple) parameter, and Spacers can be specified with a wxSize (or 2-tuple) parameter
Added wxCursorFromBits.
Gave up on generating a warning upon the use of the old true/false or TRUE/FALSE values.
Fixed wxGenericTreeCtrl (used on wxGTK and wxMac for wxTreeCtrl) so @@ -751,18 +997,27 @@ details.
The new deprecation class for the old true/false symbols can now be returned from OnInit. And I promise to be sure I am testing what I think I am testing in the future...
A few little but annoying bug fixes.
Updated pycolourchooser.
Updated to 0.9b of PyCrust.
Added missing wxRect methods
Add OOR support for wxApp objects too.
Added wxCursorFromImage, which works on wxMSW and wxGTK so far.
@@ -796,7 +1051,7 @@ present.Added some static wxApp functions that help with integration with the Mac UI. They are no-ops on other platforms so it doesn't hurt to always call them. The functions are:
-++wxApp_SetMacHelpMenuTitleName +wxApp_GetMacDefaultEncodingIsPC wxApp_GetMacSupportPCMenuShortcuts wxApp_GetMacAboutMenuItemId @@ -808,7 +1063,8 @@ wxApp_SetMacSupportPCMenuShortcuts wxApp_SetMacAboutMenuItemId wxApp_SetMacPreferencesMenuItemId wxApp_SetMacExitMenuItemId -wxApp_SetMacHelpMenuTitleName
Refactored, enhanced and added capabilities for the DrawXXXList functions, inspired by code from Chris Barker.
The wxWindows .mo language catalog files are now installed in a @@ -818,25 +1074,37 @@ doesn't have a standard place for them.
Fixed typemaps for wxGridCellCoordsArray.
Updated to the 0.9a version of PyCrust
Several bug fixes.
Added wxIntCtrl from Will Sadkin.
Added wxPyColourChooser by Michael Gilfix.
No major new features since 2.3.4.2, mostly bug fixes and minor enhancements.
Added function wrappers for the common dialogs from Kevin Altis. See wxPython/lib/dialogs.py for more details.
Updated XRCed and wxTimeCtrl contribs.
Show a couple new wxGrid features in the demo.
Several bug fixes in wxWindows.
@@ -890,8 +1158,11 @@ windows when desired. HTMLHelp viewer does. Changed how the wxPythonDocs tarball is built and added a script to launch the doc viewer.Added wxSplashScreen.
Added wxGenericDirCtrl.
Added wxMultiChoiceDialog.
@@ -914,7 +1185,7 @@ wxFlexGridSizer.Added wxBufferedDC.
Upgraded wxSTC from Scintilla 1.40 to Scintilla 1.45, and then again to version 1.47, and one more time to 1.48! <wink>
-wxWindows/wxPython can be compiled with unicode support enabled or disabled. Previous to wxPython 2.3.3 non-unicode mode was always @@ -1033,15 +1304,21 @@ example.
Added wxPython.lib.mixins.rubberband module from Robb Shecter.
Added wxTimeCtrl from Will Sadkin.
Changed (again) how the Python global interpreter lock is handled as well as the Python thread state. This time it works on SMP machines without barfing and is also still compatible with Python debuggers.
Added some patches from library contributors.
Added EVT_HELP, EVT_HELP_RANGE, EVT_DETAILED_HELP, EVT_DETAILED_HELP_RANGE, EVT_CONTEXT_MENU, wxHelpEvent, wxContextMenuEvent, wxContextHelp, wxContextHelpButton, wxTipWindow, @@ -1123,8 +1400,11 @@ SendCommand method, but it is still quite powerful. See wxPython/contrib/dllwidget and wxPython/demo/dllwidget for more details.
Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the user code can get access to the edit control when it is created, (to push on a custom event handler for example.)
@@ -1137,8 +1417,11 @@ subclass wxXmlResourceHandler, etc...Fixed img2py to work correctly with Python 2.1.
Added enhanced wxVTKRenderWindow by Prabhu Ramachandran
Removed initial startup dependency on the OpenGL DLLs so only the glcanvasc.pyd depends on them, (on wxMSW.)
Changed wxFont, wxPen, wxBrush to not implicitly use the @@ -1179,7 +1462,7 @@ the distutils that comes with Python 2.1.
Switched to InnoSetup for MSW distributions.
Added wxToggleButton.
Fixed bug that prevented wxTreeCtrl.OnCompareItems from being called.
-Added wxGetClientDisplayRect which on wxMSW returns a wxRect representing the area on screen not occupied by the taskbar and such. On other platforms it is equivallent to wxGetDisplaySize.
-Implemented the first phase of OOR (Original Object Return). See the text in the demo for more details of what this means, but in a @@ -1234,13 +1517,19 @@ please send it to me for inclusion in this package.
by having smaller functional apps to play with. They can be found in wxPython/samples.No changes happened in the Python wrappers for this release, only changes and fixes in the wxWindows library.
New typemaps for wxString when compiling for Python 2.0 and beyond that allow Unicode objects to be passed as well as String objects. If a Unicode object is passed PyString_AsStringAndSize is used to convert @@ -1282,6 +1571,9 @@ XML-RPC server.
Significantly changed how the wxStyledtextCtrl code that wraps Scintilla is implemented. Most of it is now automatically generated from an interface definition file provided by Scintilla. This means @@ -1319,17 +1611,26 @@ wxMSW, but at least it's a bit more usable now.
Various tweaks, fixes, missing methods, etc.
Added example use of wxTaskBarIcon to the demo.
Added wxLog and friends.
Added wxFrame.ShowFullScreen for MSW.
Added PyShellWindow to the wxPython.lib package.
Added an attribute named labelDelta to the generic buttons that specifies how far to offset the label when the button is in the depressed state.
@@ -1363,6 +1664,9 @@ OnScrollFixed wxTreeCtrl.HitTest to return both the tree item as well as the flags that clairify where the click was in relation to the item.
Fixed thread state problem in wxTreeCtrl.GetBoundingBox and @@ -1404,6 +1708,9 @@ provider smiles convincingly and removes his flame-proof suit.)
Skipped a version number to match what has been released for wxGTK.
Updated wxMVCTree and added a demo for it, also fixed layout on GTK and some flicker problems.
@@ -1435,7 +1742,7 @@ but shouldn't impact anybody too much. I took the opportunity to add support for setting user data on each toolbar tool. The new AddTool methods look like this:-+
- def AddTool(ID,
- bitmap, pushedBitmap = wxNullBitmap, @@ -1467,6 +1774,9 @@ style flag instead of trying to float it ourselves.)
Skipped a few version numbers so wxMSW, wxGTK and wxPython are all syncronized.
wxImage.SetData now makes a copy of the image data before giving it to @@ -1502,12 +1812,18 @@ wxGTK...
This is a quick bug-fix release to take care of a few nasties that crept in at the last minute before 2.1.4 was called done. No new major features.
This release is NOT syncronized with a snapshot release of wxGTK or wxMSW. For MSW this isn't much of a problem since you can get the binaries from the web site. For other platforms you'll have to build @@ -1529,9 +1845,10 @@ default sort order.
Added typemaps for wxSize, wxPoint, wxRealPoint, and wxRect that allow either the actual objects or Python sequence values to be used. For example, the following are equivallent:
-++win = wxWindow(parent, size = (100, 100)) +win = wxWindow(parent, size = wxSize(100, 100)) -win = wxWindow(parent, size = (100, 100))
Super-charged the wxHtml module. You can now create your own tag handlers and also have access to the parser and cell classes. There is a tag handler in the library at wxPython.lib.wxpTag that @@ -1593,19 +1910,15 @@ object's constructor that is a filename. If you want to use your own class instead of wxPyOnDemandOutputWindow you can either implement RedirectStdio() in you app class or change the value of wxApp.outputWindowClass like this:
--+-
-- class MyApp(wxApp):
-- -
outputWindowClass = MyClass
--
-- def OnInit(self):
-- frame = MyFrame() -self.SetTopWindow(frame) -return true
-
+class MyApp(wxApp): + outputWindowClass = MyClass + + def OnInit(self): + frame = MyFrame() + self.SetTopWindow(frame) + return true +
Please see the implementation of wxPyOnDemandOutputWindow and wxApp in wx.py for more details. A few words of caution: if you are running your app in a debugger, changing sys.stdout and sys.stderr is likely @@ -1623,6 +1936,9 @@ problems...)
This release is syncronized with release 2.1 snapshot 9 of wxWindows.
Switched to using SWIG from CVS (see http://swig.cs.uchicago.edu/cvs.html) for some of the new features and such. Also they have encorporated my @@ -1656,6 +1972,9 @@ interface using wxPoints and a wxSize.
Added the missing wxWindow.GetUpdateRegion() method.
Made a new change in SWIG (update your patches everybody) that provides a fix for global shadow objects that get an exception in @@ -1682,7 +2001,7 @@ matches MSW's.
wxSystemSettings_GetSystemColour.Removed wxPyMenu since using menu callbacks have been deprecated in wxWindows. Use wxMenu and events instead.
-Fixed wxComboBox.SetSelection so that it actually sets the selected item. (Actually just removed it from wxPython and let it default to wxChoice.SetSelection which was already doing the right thing.)
@@ -1719,6 +2041,9 @@ not even in the wxWindows C++ library yet!Bug fix for ListCtrl in test4.py (Was a missing file... DSM!)
Bug fix for occassional GPF on Win32 systems upon termination of a wxPython application.
@@ -1741,22 +2066,34 @@ methods.Support for using Python threads in wxPython apps.
Several missing methods from various classes.
Various bug fixes.
Added DLG_PNT and DLG_SZE convienience methods to wxWindow class.
Added missing constructor and other methods for wxMenuItem.
Just a quickie update to fix the self-installer to be compatible with Python 1.5.2b2's Registry settings.
Well obviously the numbering scheme has changed. I did this to reflect the fact that this truly is the second major revision of wxPython, (well the third actually if you count the one I did for @@ -1776,14 +2113,17 @@ wxRegConfig class.
Added wxSashWindow, wxSashEvent, wxLayoutAlgorithm, etc.
Various cleanup, tweaks, minor additions, etc. to maintain compatibility with the current wxWindows.
Changed the import semantics from "from wxPython import *" to -"from wxPython.wx import *" This is for people who are worried about +
Changed the import semantics from "from wxPython import *" to +"from wxPython.wx import *" This is for people who are worried about namespace pollution, they can use "from wxPython import wx" and then prefix all the wxPython identifiers with "wx."
Added wxTaskbarIcon for wxMSW.
@@ -1796,17 +2136,23 @@ objects to references to reflect changes in the wxWindows API.wxPython on wxGTK works!!! Both dynamic and static on Linux and -static on Solaris have been tested. Many thanks go to Harm -<H.v.d.Heijden@phys.tue.nl> for his astute detective work on tracking -down a nasty DECREF bug. Okay so I have to confess that it was just a -DSM (Dumb Stupid Mistake) on my part but it was nasty none the less -because the behavior was so different on different platforms.
+static on Solaris have been tested. Many thanks go to Harm van der +Heijden for his astute detective work on tracking down a nasty DECREF +bug. Okay so I have to confess that it was just a DSM (Dumb Stupid +Mistake) on my part but it was nasty none the less because the +behavior was so different on different platforms.The dynamicly loaded module on Solaris is still segfaulting, so it must have been a different issue all along...
1. Worked on wxGTK compatibility. It is partially working. On a Solaris/Sparc box wxPython is working but only when it is statically linked with the Python interpreter. When built as a dyamically loaded @@ -1818,6 +2164,14 @@ version segfault shortly after starting up.
The first "modern" version of wxPython. See +http://wiki.wxpython.org/index.cgi/WxPythonHistory
+