201 |
201 |
202 def addAssignment(self, lineno): |
202 def addAssignment(self, lineno): |
203 """ |
203 """ |
204 Public method to add another assignment line number. |
204 Public method to add another assignment line number. |
205 |
205 |
206 @param lineno linenumber of the additional attribute assignment (integer) |
206 @param lineno linenumber of the additional attribute assignment |
|
207 (integer) |
207 """ |
208 """ |
208 if lineno not in self.linenos: |
209 if lineno not in self.linenos: |
209 self.linenos.append(lineno) |
210 self.linenos.append(lineno) |
210 |
211 |
211 |
212 |