Re: [IronPython] BUG? IOError: Could not find file

2007-02-23 Thread HEMMI, Shigeru
Dear IronPython team, Such a coding pattern which inherits from 'file' class is my personal favourite. I believe this bug is a bug even in Windows within .NET. I hope IPy team to fix this bug in near future. Thanks in advance. 2007/2/3, HEMMI, Shigeru <[EMAIL PROTECTED]>: > Hello, IronPython Te

[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