Re: [IronPython] an unexpected keyword argument

2006-09-02 Thread Martin Maly
t: Re: [IronPython] an unexpected keyword argument Nobody replies, I think this is a bug. On my MAC OS X, I got the same output: $ cat testingIP.py class TEST(file): def __init__(self,fname,VERBOSITY=0): file.__init__(self,fname,"r",1) self.VERBOSITY = VERBOSITY if __na

Re: [IronPython] an unexpected keyword argument

2006-09-01 Thread HEMMI, Shigeru
Nobody replies, I think this is a bug. On my MAC OS X, I got the same output: $ cat testingIP.py class TEST(file): def __init__(self,fname,VERBOSITY=0): file.__init__(self,fname,"r",1) self.VERBOSITY = VERBOSITY if __name__=='__main__': f=TEST(r'sometext.txt',VERBOSITY=1)

[IronPython] an unexpected keyword argument

2006-08-30 Thread HEMMI, Shigeru
Hello, for a code, class TEST(file): def __init__(self,fname,VERBOSITY=0): file.__init__(self,fname,"r",1) self.VERBOSITY = VERBOSITY if __name__=='__main__': f=TEST(r'sometext.txt',VERBOSITY=1) print "f.VERBOSITY=",f.VERBOSITY I got different result: C:\home\>ipy tes