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
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)
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