[wxPython] Possible documentation bug for wxListCtrl - Append() entry missing.

Greetings.

Documentation for wxListCtrl (both local supplied with wxPython and
online on http://www.wxpython.org/onlinedocs.php) say nothing about
wxListCtrl.Append method, though it is present.

Is it a documentation bug or have I missed something?

Sincerely Yours,

  Victor.

==============>

Python 2.2.2 (#37, Oct 14 2002, 17:02:34) [MSC 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.

from wxPython.wx import *
help(wxListCtrl.Append)

Help on method Append in module wxPython.controls2:

Append(self, entry) unbound wxPython.controls2.wxListCtrl method
    Append an item to the list control. The entry parameter should be a
    sequence with an item for each column

Krjukov Victor wrote:

Greetings.

Documentation for wxListCtrl (both local supplied with wxPython and
online on http://www.wxpython.org/onlinedocs.php) say nothing about
wxListCtrl.Append method, though it is present.

Is it a documentation bug or have I missed something?

Documentation bug, sort of. It's a convenience method I added for wxPython from a user contributed patch, so it's not in C++ so it isn't in the C++ docs.

I'm working on some changes to SWIG that will make it easy to generate some Python specific docs that will pick up things like this.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

It must be a wxPython-specific thing as C++ interface doesn't have such
method. It doesn't mean it shouldn't be added to the docs, of course, but
just that I can't do it as I don't know anything about this.

Regards,
VZ

···

On Wed, 16 Oct 2002 18:56:20 +0400 Krjukov Victor <VKryukov@ufg.com> wrote:

Greetings.

Documentation for wxListCtrl (both local supplied with wxPython and
online on http://www.wxpython.org/onlinedocs.php) say nothing about
wxListCtrl.Append method, though it is present.

Is it a documentation bug or have I missed something?