Re: [IronPython] Events

2007-02-02 Thread Dino Viehland
One thing I'll point out is we have no direct support for this in IronPython today. But our events are all dispatched using an EventDispatcher class (see ReflectedMembers.cs, EventDispatcher is an inner class of ReflectedEvent). This class registers a single event against the underlying .NET

[IronPython] BUG? IOError: Could not find file

2007-02-02 Thread HEMMI, Shigeru
Hello, IronPython Team, On my MAC OS X (Panther) + mono + IronPython, I encounterd a bug for the program. class TESTINGwrite(file): def __init__(self, fname): file.__init__(self,fname,w,1) def writesomething(self): self.write(Hi there\n) if __name__=='__main__': x =