[wxPython] wxMVCTree

I am trying to work with wxMVCTree but it is
causing a list of memory leaks on exit.

Here is the code:

  if not hasattr(self,"tree"):
      self.tree = wxMVCTree(parent,wxNewId())
      path=os.path.normpath(os.getcwd() + os.sep +'..')
      model=LateFSTreeModel(path)
      self.tree.SetModel(model)
      self.tree.AddEditor(FileEditor(tree))
      return

The memory leaks listed on exit are below.
I am running python2.2 on win2k

-Alex-

···

___________________________________________________________________
S. Alexander Jacobson i2x Media
1-212-787-1914 voice 1-603-288-1280 fax

08:49:19 PM: There were memory leaks.
08:49:19 PM: ----- Memory dump -----
08:49:19 PM: wxColour at $FF0878, size 16
08:49:19 PM: wxColour at $1029C38, size 16
08:49:19 PM: wxColour at $FEC570, size 16
08:49:19 PM: wxColour at $FFAA90, size 16
08:49:19 PM: wxFont at $FFF3C0, size 12
08:49:19 PM: wxBitmap at $103D7F8, size 12
08:49:19 PM: wxPen at $FEBC08, size 16
08:49:19 PM: wxPen at $100CAE0, size 16
08:49:19 PM: wxPen at $100E9A8, size 16
08:49:19 PM: wxPen at $1010D50, size 16
08:49:19 PM: wxPen at $10128C0, size 16
08:49:19 PM: wxBrush at $103DDF8, size 12
08:49:19 PM: wxBrush at $103D160, size 12
08:49:19 PM: wxBrush at $103D2D8, size 12
08:49:19 PM: wxPen at $101A740, size 16
08:49:19 PM:
08:49:19 PM:
08:49:19 PM: ----- Memory statistics -----
08:49:19 PM: 3 objects of class wxBrush, total size 36
08:49:19 PM: 6 objects of class wxPen, total size 96
08:49:19 PM: 1 objects of class wxBitmap, total size 12
08:49:19 PM: 1 objects of class wxFont, total size 12
08:49:19 PM: 4 objects of class wxColour, total size 64
08:49:19 PM:
08:49:19 PM: Number of object items: 15
08:49:19 PM: Number of non-object items: 0
08:49:19 PM: Total allocated size: 220
08:49:19 PM:
08:49:19 PM: