From: Christoph Z. <ci...@on...> - 2006-02-28 14:09:15
|
Alex Tweedly wrote: > There's nothing terrible about "import wx"; in fact, it's much better to > have that than the "from wx import *" that you presumably have right now > to allow the use of > self.SetCursor(wxHOURGLASS_CURSOR) > > It would be a good thing to change that to > import wx > and do > self.SetCursor(wx.HOURGLASS_CURSOR) > > Not important - but a good practice to follow. Thanks for pointing that out. You're right. -- Christoph |