Hi there,
why does pychecker v0.8.14 gives this warning:
koe2.py:2: Base class (exceptions.Exc eption) __init__() not called
when run against this example from Python Tutorial:
------------- code starts -------
class MyError(Excepti on):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value )
try:
raise MyError(2*2)
except MyError, e:
print 'My exception occurred, value:', e.value
------------- code starts -------
What does this warning mean and how can I disable it?
-pekka-
why does pychecker v0.8.14 gives this warning:
koe2.py:2: Base class (exceptions.Exc eption) __init__() not called
when run against this example from Python Tutorial:
------------- code starts -------
class MyError(Excepti on):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value )
try:
raise MyError(2*2)
except MyError, e:
print 'My exception occurred, value:', e.value
------------- code starts -------
What does this warning mean and how can I disable it?
-pekka-
Comment