wxPython and pyChecker friendlyness

Robin,

Are you intending to make wxPython friendlier towards pyChecker?

At the moment I encounter several problems. Some are due to
all function arguments being (*args, **kwargs). Others are
due to the inheritance hierarchy doing funky things so my
code is accused of not calling superclass constructors.

Here are some examples of the false positives I get:

C:\projects\bitpim\analyser.py:39: Base class (wxPython.controls2.wxListCtrl) __
init__() not called [and hundreds more]

C:\projects\bitpim\bpcalendar.py:856: No module attribute (lib) found
  self.c=wx.lib.maskededit.MaskedTextCtrl(self, id, "", autoformat=f)
  [At the top of the file I have import wx, wx.lib, wx.lib.maskededit]
  Variations on this theme exist for (html), (grid)

C:\projects\bitpim\bpcalendar.py:940: Overridden method (SetValue) doesn't match
signature in class (wxPython.controls.wxTextCtrl) [and hundreds more]

I am also concerned that the explicit initialisation stuff
in wxPython 2.5 could lead to problems if you inherit from
widgets before the wx library is initialised (which it won't
be under pyChecker)

Roger