Files
Ekaterina Tuzova fc02fb5ca5 fixed PY-9496 Don't show warnings about base classes without __init__
PY-9302 Class has no __init__ method: false positive for child class without one
2013-07-25 17:52:39 +04:00

10 lines
192 B
Python

__author__ = 'ktisha'
class <weak_warning descr="Class has no __init__ method">A</weak_warning>:
def foo(self):
self.b = 1
class B(A):
def __init__(self):
self.b = 2