pylint-bot / test

0 stars 0 forks source link

Instances don't know their arguments #142

Open pylint-bot opened 9 years ago

pylint-bot commented 9 years ago

Originally reported by: Claudiu Popa (BitBucket: PCManticore, GitHub: @PCManticore?)


#!python

class A:
    def __init__(self, first, second):
         self.first = first
         self.second = second
a = A(1, 2)
a.first # infer it as 1