Re: [IronPython] __delattr__ in .NET class

2010-12-03 Thread Slide
On Thu, Dec 2, 2010 at 11:35 PM, Dino Viehland wrote: > Slide wrote: >> I am currently implementing a module in C#. I need to be able to override the >> __delattr__ method for one of my objects. I've put in a __delattr__ method >> that takes a string, but it never gets called. I also tried DeleteM

Re: [IronPython] __delattr__ in .NET class

2010-12-02 Thread Dino Viehland
Slide wrote: > I am currently implementing a module in C#. I need to be able to override the > __delattr__ method for one of my objects. I've put in a __delattr__ method > that takes a string, but it never gets called. I also tried DeleteMember > because I saw that around too. Is there a way to do