Memory leak in HSV code

wx.Image_RGBValue and wx.Image_HSVValue objects do not have destructors, and so every time one of these objects is cleaned up, swig reports a memory leak error. For example:

import wx
x=wx.Image_RGBValue(100,200,50)
del x
swig/python detected a memory leak of type ‘wxImage_RGBValue *’, no destructor found.

Has anyone fixed this or is planning to fix it soon? Should I just write my own RGB<->HSL code?

Gre7g