How to use wxPython documentation

I can’t believe I missed that; I do look routinely at the wxPython
notes. Thanks for the reinforcement.

And thanks everyone else for the discussion. I picked up a number of
links I’ll add to my doc folder.

Incidentally, this documentation is missing the 3rd argument to
wx.EmptyImage, the boolean called ‘clear.’

···

>From the C++ CHM Documentation file, end of the constructor documentation
for wxImage:
wxPython note: Constructors supported by wxPython are:
wxImage(name, flag) Loads an image from a file
wxNullImage() Create a null image (has no size or image
data)
wxEmptyImage(width, height) Creates an empty image of the
given size
wxImageFromMime(name, mimetype Creates an image from the
given file of the given mimetype
wxImageFromBitmap(bitmap) Creates an image from a
platform-dependent bitmap
The C++ Documentation is sparkled with wxPython notes:
So, you see... it is documented, but I guess you do have to dig for it. I
got used to searching for these notes... intuitively...
-- =