Re: Re: Current plan for Phoenix
Robin Dunn <[email protected]>
| Newsgroups | gmane.comp.python.wxpython.devel |
|---|---|
| Message-ID | <[email protected]> |
James Wettenhall wrote:
> Hi,
>
> This is really exciting!
>
> Can I suggest inserting into the plan some pre-release announcements
> to multiple mailing lists / forums, something like this:
Yep, some announcing is planned although I haven't given much thought
yet how far and wide it should be.
> 5. It should be possible to make your application compatible with both
> classic and Phoenix and avoid deprecation warnings, e.g.
>
> ifwx.version().startswith("3.0.3.dev"):
>
> busyCursor = wx.Cursor(wx.CURSOR_WAIT)
>
> else:
>
> busyCursor = wx.StockCursor(wx.CURSOR_WAIT)
>
A little better test, IMO, is
if 'phoenix' in wx.PlatformInfo:...
That makes it very clear that it is not Classic.
--
Robin Dunn
Software Craftsman
http://wxPython.org
--
You received this message because you are subscribed to the Google Groups "wxPython-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.