Recent Changes for wxPython
=====================================================================
-2.5.2.3
+2.5.2.7
-------
wx.ADJUST_MINSIZE is now the default behaviour for window items in
and forth between the default and your edited version, and any errors
ocurring upon the reload are reported on the Demo tab.
+Added a menu item in the demo that will open a PyShell window that has
+the app and demo frame preloaded in the namespace. This is another
+good way to explore and play with the objects in the currently running
+sample. For example, load the Button sample and then do the following
+in the PyShell::
+
+ >>> b = frame.demoPage.GetChildren()[0]
+ >>> for x in range(0, 500, 10):
+ ... b.Move((x, 50))
+ ... app.Yield(True)
+ ... wx.MilliSleep(10)
+